16 lines
449 B
PHP
16 lines
449 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Laravel</title>
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
@yield('content')
|
|
</div>
|
|
<script src="{{ asset('js/app.js') }}"></script>
|
|
@stack('scripts')
|
|
</body>
|
|
</html> |