25 lines
494 B
PHP
25 lines
494 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>SB Admin 2 - @yield('title')</title>
|
|
|
|
@include('component.css')
|
|
@stack('css')
|
|
</head>
|
|
|
|
<body>
|
|
@yield('content')
|
|
|
|
@include('component.js')
|
|
@stack('js')
|
|
</body>
|
|
|
|
</html> |