blessing-skin-server/resources/views/common/skeleton.blade.php
2019-04-28 09:28:53 +08:00

15 lines
267 B
PHP

@extends("$parent.master")
@section('title', $title)
@section('content')
<div class="content-wrapper">
<section class="content-header">
<h1>{{ $title }}</h1>
</section>
<section class="content"></section>
</div>
{{ $bottom ?? '' }}
@endsection