@props([ 'title', 'stats' => [], 'searchPlaceholder' => 'Search...', 'searchModel' => 'search', 'showSearch' => true, 'createButton' => null, 'createEvent' => null, ])
{{-- Stats --}}
@if(count($stats) > 0)
@foreach($stats as $stat) {{ $stat['value'] }} {{ $stat['label'] }} @endforeach
@endif
{{-- Search --}} @if($showSearch)
@if(isset($this->{$searchModel}) && $this->{$searchModel}) @endif
@endif {{-- Actions --}}
{{ $actions ?? '' }} @if($createButton && $createEvent) @endif