Files
tickme/resources/views/layouts/base_portal.blade.php
2020-05-11 14:43:49 +08:00

12 lines
323 B
PHP

@extends('layouts.base')
@section('content')
<body id="app-container" class="flat menu-sub-hidden show-spinner">
@include('partials.header')
@include('partials.menu')
<main id="app">
@yield('inner_content')
</main>
@include('partials.footer')
</body>
@endsection