@php
$title = $title ?? ($pageTitle ?? '');
$subtitle = $subtitle ?? ($pageSubtitle ?? '');
$actions = $actions ?? ($pageActions ?? []);
$stats = $stats ?? [];
@endphp
@if(!empty($title))
{{ $title }}
@endif
@if(!empty($subtitle))
{{ $subtitle }}
@endif
@if(!empty($actions))
@endif
@if(!empty($stats))
@foreach($stats as $s)
@if(!empty($s['icon']))@endif
{{ $s['label'] ?? '' }}
{{ $s['value'] ?? '' }}
@endforeach
@endif