@if (method_exists($data, 'total'))
@if(isset($data) && method_exists($data, 'total')) Total records: {{ $data->total() }} @endif
@php $perPageOptions = [10, 25, 50, 100, 500, 1000]; $userDefault = $userListingTableSize ?? null; if ($userDefault && !in_array($userDefault, $perPageOptions)) { $perPageOptions[] = $userDefault; sort($perPageOptions); } $selectedPerPage = request('offset', $userDefault ?? config('settings.per_page_record', 30)); @endphp
@endif