@extends('template') @section('conteudo') {{-- Breadcrumb --}} {{-- Cabecalho --}}
Código
{{ $cliente->codigo }}
Nome
{{ $cliente->nome }}
Status
@if($cliente->isAtivo()) Ativo @else Inativo @endif
Tipo
{{ $cliente->tipo->labelCurto() }}
CNPJ
{{ $cliente->cnpj_formatado ?? '-' }}
@if($cliente->email) {{ $cliente->email }} @else - @endif
Telefone
{{ $cliente->telefone_formatado ?? '-' }}
Responsável Comercial
{{ $cliente->responsavel_comercial ?? '-' }}
Nenhum contato cadastrado.
@else| # | Nome | Cargo | Telefone | Celular | Principal | |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $c->nome }} | {{ $c->cargo ?? '-' }} | {{ $c->telefone_formatado ?? '-' }} | {{ $c->celular_formatado ?? '-' }} | @if($c->email) {{ $c->email }} @else - @endif | @if($c->principal) Principal @else - @endif |