Registration Report
{{ ucfirst($type) }} Registrations
{{ $records->total() }} total# |
@if($type === 'vendor')
Vendor Name |
Business |
@else
First Name |
Last Name |
@endif
Phone |
District |
State |
Status |
Registered |
|
|---|---|---|---|---|---|---|---|---|---|---|
| {{ ($records->firstItem() ?? 1) + $index }} | @if($type === 'vendor'){{ $record->vendor_name }} | {{ $record->business_name ?? 'N/A' }} | @else{{ $record->first_name }} | {{ $record->last_name }} | @endif{{ $record->user->phone ?? 'N/A' }} | {{ $record->user->email ?? 'N/A' }} | {{ $record->user->addresses->first()->district ?? 'N/A' }} | {{ $record->user->addresses->first()->state ?? 'N/A' }} | @php $st = strtolower($record->status ?? 'pending'); @endphp {{ ucfirst($record->status ?? 'pending') }} | {{ $record->created_at->format('d M Y') }} |
|
No records found |
||||||||||
Showing {{ $records->firstItem() ?? 0 }} – {{ $records->lastItem() ?? 0 }} of {{ $records->total() }} entries
{{ $records->appends(request()->query())->links('pagination::bootstrap-4') }}