19 lines
783 B
PHP
19 lines
783 B
PHP
|
|
@extends("backpack::layout")
|
||
|
|
@section('header')
|
||
|
|
<section class="content-header">
|
||
|
|
<h1>
|
||
|
|
<span class="text-capitalize">{!! $crud->getHeading() ?? $crud->entity_name_plural !!}</span>
|
||
|
|
<small>{!! $crud->getSubheading() ?? mb_ucfirst(trans('backpack::crud.preview')).' '.$crud->entity_name !!}.</small>
|
||
|
|
</h1>
|
||
|
|
<ol class="breadcrumb">
|
||
|
|
<li><a href="{{ url(config('backpack.base.route_prefix'), 'dashboard') }}">{{ trans('backpack::crud.admin') }}</a></li>
|
||
|
|
<li><a href="{{ url($crud->route) }}" class="text-capitalize">{{ $crud->entity_name_plural }}</a></li>
|
||
|
|
<li class="active">{{ trans('backpack::crud.preview') }}</li>
|
||
|
|
</ol>
|
||
|
|
</section>
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
|
||
|
|
@endsection
|