@extends('client.layouts.main') @section('title', 'My Contacts') @section('content')
Contacts
@forelse($contacts as $contact) @empty @endforelse
Name Email Phone Country Type Default Actions
{{ $contact->first_name }} {{ $contact->last_name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->country->name ?? $contact->country_code }} @php $typeColors = [ 'registrant' => 'info', 'admin' => 'info', 'tech' => 'warning', 'billing' => 'success', ]; @endphp {{ ucfirst($contact->type) }} @if($contact->is_default) Yes @else No @endif
@csrf @method('DELETE')
No contacts found.
@if($contacts->hasPages()) @endif
@endsection