blessing-skin-server/resources/views/admin/master.blade.php
2019-12-07 16:39:04 +08:00

21 lines
468 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
@include('shared.head')
<title>@yield('title') - {{ option_localized('site_name') }}</title>
@yield('style')
</head>
<body class="hold-transition sidebar-mini">
<div class="wrapper">
@include('shared.header')
@include('shared.sidebar', ['scope' => 'admin'])
@yield('content')
@include('shared.footer')
</div>
@include('shared.foot')
@yield('script')
</body>
</html>