Contacts
@if (count($contacts) > 0)
@foreach ($contacts as $contact)
@endforeach
@else
Sr. No. | Name | Number | Category | Action | |
---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $contact->first_name . ' ' . $contact->last_name }} | {{ $contact->mobile }} | {{ $contact->email ?? 'N/A' }} | {{ $contact->category->name }} | Show |
No record found!
@endif