Name
Email
Phone
Actions
@foreach($contacts as $contact)
{{ $contact->name ?? '-' }}
{{ $contact->email }}
{{ $contact->phone }}
{{ $contact->created_at->format('d M Y') }}
@csrf @method('DELETE')
@endforeach @if(count($contacts) <=0)
No data available
@endif
@if ($contacts->hasPages())
@if (!$contacts->onFirstpage())
@endif
Page {{ number_format($contacts->currentPage()) }} of {{ number_format($contacts->lastPage()) }}
@if (!$contacts->onLastpage())
@endif
@endif