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.
41 lines
1.1 KiB
41 lines
1.1 KiB
@section('content') |
|
<section class="content"> |
|
@include('admin::partials.alerts') |
|
@include('admin::partials.exception') |
|
|
|
{!! $content !!} |
|
|
|
@include('admin::partials.toastr') |
|
</section> |
|
@endsection |
|
|
|
@section('app') |
|
{!! Dcat\Admin\Admin::asset()->styleToHtml() !!} |
|
|
|
<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.full-page', ['header' => $header]) |
|
@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
|
|
|