@extends('client.layouts.app') @section('title', __('client.contacts.title')) @section('content')
@forelse($contacts ?? [] as $contact) @empty @endforelse
{{ __('common.table.name') }} {{ __('common.table.email') }} {{ __('common.form.phone') }} {{ __('client.contacts.permissions') }} {{ __('common.table.actions') }}
{{ $contact->first_name }} {{ $contact->last_name }} {{ $contact->email }} {{ $contact->phone ?? '-' }} {{ $contact->permissions ?? __('client.contacts.general') }} {{ __('common.actions.edit') }}
@csrf @method('DELETE')
{{ __('client.contacts.no_contacts') }}
@endsection