@extends('layouts.app') @section('title', 'Contacts List') @section('content')

Contacts List

Track your store's progress to boost your sales.

{{-- Search Box --}}
@if(request('perPage')) @endif
@if(request('search')) @endif @if(request('perPage')) @endif

Start Date

End Date

Clear
Name / Email Action
@forelse($contacts as $key => $contact)
{{ strtoupper(substr($contact->contact_name, 0, 2)) }}

{{ $contact->contact_name }}

{{ $contact->contact_email }}

@csrf @method('DELETE')

Contact ID

#{{ ($contacts->currentPage() - 1) * $contacts->perPage() + $loop->iteration }}

Full Email

{{ $contact->contact_email }}

@empty
No contacts found
@endforelse
{{ $contacts->links('vendor.pagination.tailwind') }}
@endsection