FleetCart/Modules/Admin/Resources/views/components/page/header.blade.php
2023-06-11 13:14:03 +01:00

18 lines
390 B
PHP

@section('title')
@isset($subtitle)
{{ "{$subtitle} - {$title}" }}
@else
{{ $title }}
@endisset
@endsection
@section('content_header')
<h3>{{ $title }}</h3>
<ol class="breadcrumb">
<li><a href="{{ route('admin.dashboard.index') }}">{{ trans('admin::dashboard.dashboard') }}</a></li>
{{ $slot }}
</ol>
@endsection