{{-- Flash messages --}} @if(session('success')) @endif @if(session('error')) @endif {{-- Top bar --}}

{{ __('Trash') }}

{{ __('Deleted contacts are kept for 30 days before permanent removal.') }}

@if($contacts->total() > 0) @endif
{{-- Search --}}
{{-- Loading indicator --}}
{{ __('Loading...') }}
{{-- Table --}} @if($contacts->count() > 0)
@foreach($contacts as $contact) @endforeach
{{ __('Name') }} {{ __('Email') }} {{ __('Actions') }}
{{ $contact->initials }}
{{ $contact->full_name }}
{{ $contact->email }}
{{-- Pagination --}}
{{ $contacts->links() }}
@else @endif