{{ $title ?? 'Welcome to Dashboard' }}
@if (isset($data) && is_object($data) && method_exists($data, 'currentPage'))Showing page
{{ $data->currentPage() }} of {{ $data->lastPage() }}
Total records: {{ $data->total() }}.
@if (isset($filters) && !empty($filters))
@endif
@if (isset($header_buttons))
@foreach ($header_buttons as $button)
{!! $button !!}
@endforeach
@endif
@if (isset($noCardView) && $noCardView)
@yield('content')
@else
@endif
@if (isset($filters) && !empty($filters))
@endif
@yield('content')
@yield('card-footer')
@include('admin.components.filter-form')