76 lines
1.5 KiB
PHP
76 lines
1.5 KiB
PHP
@extends('adminlte::page')
|
|
|
|
{{-- Extend and customize the browser title --}}
|
|
|
|
@section('title')
|
|
{{ config('adminlte.title') }}
|
|
@hasSection('subtitle') | @yield('subtitle') @endif
|
|
@stop
|
|
|
|
{{-- Extend and customize the page content header --}}
|
|
|
|
@section('content_header')
|
|
@hasSection('content_header_title')
|
|
<h1 class="text-muted">
|
|
@yield('content_header_title')
|
|
|
|
@hasSection('content_header_subtitle')
|
|
<small class="text-dark">
|
|
<i class="fas fa-xs fa-angle-right text-muted"></i>
|
|
@yield('content_header_subtitle')
|
|
</small>
|
|
@endif
|
|
</h1>
|
|
@endif
|
|
@stop
|
|
|
|
{{-- Rename section content to content_body --}}
|
|
|
|
@section('content')
|
|
@yield('content_body')
|
|
@stop
|
|
|
|
{{-- Create a common footer --}}
|
|
|
|
@section('footer')
|
|
<div class="float-right">
|
|
Version: {{ config('app.version', '1.0.0') }}
|
|
</div>
|
|
|
|
<strong>
|
|
<a href="{{ config('app.company_url', '#') }}">
|
|
{{ config('app.company_name', 'My company') }}
|
|
</a>
|
|
</strong>
|
|
@stop
|
|
|
|
{{-- Add common Javascript/Jquery code --}}
|
|
|
|
@push('js')
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
// Add your common script logic here...
|
|
});
|
|
|
|
</script>
|
|
@endpush
|
|
|
|
{{-- Add common CSS customizations --}}
|
|
|
|
@push('css')
|
|
<style type="text/css">
|
|
|
|
{{-- You can add AdminLTE customizations here --}}
|
|
/*
|
|
.card-header {
|
|
border-bottom: none;
|
|
}
|
|
.card-title {
|
|
font-weight: 600;
|
|
}
|
|
*/
|
|
|
|
</style>
|
|
@endpush
|