@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')
@yield('content_header_title')
@hasSection('content_header_subtitle')
@yield('content_header_subtitle')
@endif
@endif --}}
@stop
{{-- Rename section content to content_body --}}
@section('content')
@yield('content_body')
@stop
{{-- Create a common footer --}}
@section('footer')
Version: {{ config('app.version', '1.0.0') }}
BEVI
@stop
{{-- active plugins --}}
@section('plugins.Toastr', true)
{{-- Add common Javascript/Jquery code --}}
@push('js')
{{-- success message --}}
@if(!empty(session('message_success')))
@endif
{{-- error message --}}
@if(!empty(session('message_error')))
@endif
@endpush
{{-- Add common CSS customizations --}}
@push('css')
@endpush