{{ $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() }}.

@endif
@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
@if (isset($filters) && !empty($filters))
@include('admin.components.filter-form')
@endif @yield('content')
@yield('card-footer')
@endif
@include('admin.components.footer')