2020-06-30 08:19:01 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>@yield("title")</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
|
|
|
|
</head>
|
2020-06-30 08:46:49 +00:00
|
|
|
<body style="background-color: #00788a;">
|
2020-06-30 08:19:01 +00:00
|
|
|
@yield("content")
|
|
|
|
|
|
|
|
<script src="{{ mix("/js/app.js") }}"></script>
|
|
|
|
@yield("scripts")
|
|
|
|
</body>
|
|
|
|
</html>
|