@extends('layouts.layoutMaster') @section('title', 'Gerenciamento de Clientes') @section('vendor-style') @endsection @section('content')
| Nome | CPF/CNPJ | Telefone | Tipo | Status | Ações | ||
|---|---|---|---|---|---|---|---|
|
{{ $cliente->nome }}
@if($cliente->razao_social)
{{ $cliente->razao_social }} @endif |
{{ $cliente->cpf_cnpj_formatado }} | {{ $cliente->email ?? '-' }} | {{ $cliente->telefone_formatado }} | @if($cliente->id_tipo_pessoa == 1) Física @else Jurídica @endif | @if($cliente->status === 'ativo') Ativo @elseif($cliente->status === 'inativo') Inativo @elseif($cliente->status === 'bloqueado') Bloqueado @else Indefinido @endif |
|
|
|
Nenhum cliente encontrado |
|||||||