@section('page_content')
@csrf

Search Filters

{{ $page_title }}

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