blessing-skin-server/resources/views/admin/master.blade.php
2019-11-24 14:32:58 +08:00

23 lines
527 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')
<footer class="main-footer">
@include('shared.footer')
</footer>
</div>
@include('shared.foot')
@yield('script')
</body>
</html>