12 lines
213 B
PHP
12 lines
213 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/app.css") }}">
|
||
|
</head>
|
||
|
<body>
|
||
|
@yield("content")
|
||
|
|
||
|
<script src="{{ mix("/js/app.js") }}"></script>
|
||
|
</body>
|
||
|
</html>
|