You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
@section('content-header') |
|
<section class="content-header breadcrumbs-top"> |
|
@if($header || $description) |
|
<h1 class=" float-left"> |
|
<span class="text-capitalize">{!! $header !!}</span> |
|
<small>{!! $description !!}</small> |
|
</h1> |
|
@elseif($breadcrumb || config('admin.enable_default_breadcrumb')) |
|
<div> </div> |
|
@endif |
|
|
|
@include('admin::partials.breadcrumb') |
|
|
|
</section> |
|
@endsection |
|
|
|
@section('content') |
|
@include('admin::partials.alerts') |
|
@include('admin::partials.exception') |
|
|
|
{!! $content !!} |
|
|
|
@include('admin::partials.toastr') |
|
@endsection |
|
|
|
@section('app') |
|
{!! Dcat\Admin\Admin::asset()->styleToHtml() !!} |
|
|
|
<div class="content-header"> |
|
@yield('content-header') |
|
</div> |
|
|
|
<div class="content-body" id="app"> |
|
{{-- 页面埋点--}} |
|
{!! admin_section(Dcat\Admin\Admin::SECTION['APP_INNER_BEFORE']) !!} |
|
|
|
@yield('content') |
|
|
|
{{-- 页面埋点--}} |
|
{!! admin_section(Dcat\Admin\Admin::SECTION['APP_INNER_AFTER']) !!} |
|
</div> |
|
|
|
{!! Dcat\Admin\Admin::asset()->scriptToHtml() !!} |
|
<div class="extra-html">{!! Dcat\Admin\Admin::html() !!}</div> |
|
@endsection |
|
|
|
@if(! request()->pjax()) |
|
@include('admin::layouts.page') |
|
@else |
|
<title>{{ Dcat\Admin\Admin::title() }} @if($header) | {{ $header }}@endif</title> |
|
|
|
<script>Dcat.wait()</script> |
|
|
|
{!! Dcat\Admin\Admin::asset()->cssToHtml() !!} |
|
{!! Dcat\Admin\Admin::asset()->jsToHtml() !!} |
|
|
|
@yield('app') |
|
@endif
|
|
|