@if(isset($breadcrumbs)) @endif

{{ $title ?? 'Page Title' }}

@if(isset($description))

{{ $description }}

@endif
@if(isset($actions))
{!! $actions !!}
@endif
@if(isset($stats) && is_array($stats) && count($stats) > 0)
@foreach($stats as $stat) @if(is_array($stat))
{{ $stat['label'] ?? 'Stat' }}

{{ $stat['value'] ?? '0' }}

@endif @endforeach
@endif