@extends('layouts.app') @section('title', 'Clienti') @section('page-title', 'Gestione Clienti') @section('page-actions') Nuovo Cliente @endsection @section('content') {{-- ═══ Barra filtri ════════════════════════════════════════════════════ --}}
| Cliente | Contatto | Città | Tipo | Stato | Contratto | Azioni |
|---|---|---|---|---|---|---|
|
{{ $customer->name }}
@if ($customer->vat_number)
P.IVA: {{ $customer->vat_number }}
@endif
|
{{ $customer->email }}
@if ($customer->phone)
{{ $customer->phone }}
@endif
|
{{ $customer->city ?? '—' }} | {{ $customer->type_label }} | {{ ucfirst($customer->status) }} | {{ $appSettings['currency_symbol'] }}{{ number_format($customer->contract_value, 0, ',', '.') }} | |
|
Nessun cliente trovato. Aggiungi il primo cliente |
||||||