@extends('layouts.master') @section('title', 'Contact Details - Udankhatola') @section('content')

Content Management

@if(Session::get('success', false)) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Contact Details List
{{-- Search --}}
@if($request->search_text) Clear @endif
{{-- Table --}}
@forelse($contacts as $key => $contact) @php $counter = (($contacts->currentPage() - 1) * $contacts->perPage()) + $key + 1; @endphp @empty @endforelse
# Contact Name Email Mobile Number Time Actions
{{ $counter }} {{ $contact->contact_name }} {{ $contact->email ?? '-' }} {{ $contact->mobile_number }} {{ $contact->time ?? '-' }} {{-- Edit --}} {{-- Delete --}}
@csrf @method('DELETE')
No contact details found.
    {!! $contacts->appends($request->query())->links() !!}
{{-- ===================== ADD MODAL ===================== --}} {{-- ===================== EDIT MODAL ===================== --}} @push('scripts') @endpush @endsection