@section('page_content')
@csrf

Search Filters

{{-- Hidden inputs for table sorting --}}

{{ $page_title }}

@if ($contacts->count() > 0) @foreach ($contacts as $contact) @endforeach @else @endif
Contact Name Email Phone Account User Status Created Date Action
{{ $contact->name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->account ? $contact->account->name : '---' }} {{ $contact->user ? "{$contact->user->given_names} {$contact->user->surname}" : '---' }} {{ $contact->status == 1 ? 'Active' : 'Inactive' }} {{ date_format(date_create($contact->created_at), 'Y-m-d') }}
Currently no contacts exists in the database.
@stop