@extends('layouts.app') @section('title', 'Clientes') @section('content')
| Cliente | Contato | Cidade | Status | |
|---|---|---|---|---|
| {{ $customer->name }} CPF {{ $customer->cpf ?: 'não informado' }} | {{ $customer->whatsapp ?: $customer->phone ?: '—' }} {{ $customer->email }} | {{ $customer->city ?: '—' }}{{ $customer->state ? '/'.$customer->state : '' }} | {{ $customer->active ? 'Ativo' : 'Inativo' }} | Abrir ficha |
| Nenhum cliente encontrado. | ||||