@extends('layouts.app') @section('title', 'Clientes NFS-e') @section('page_title', 'Clientes NFS-e') @section('page_subtitle', 'Tomadores de servico cadastrados para emissao de notas.') @section('page_actions') + Novo cliente @endsection @section('content')

Clientes

{{ $customers->total() }} registro(s)
@if (request('q')) Limpar @endif
@forelse ($customers as $c) @empty @endforelse
Nome / Razao social CPF / CNPJ E-mail Cidade Status
{{ $c->nome }} {{ $c->cpf_cnpj_formatted }} {{ $c->email }} {{ $c->cidade ? $c->cidade.'/'.$c->uf : '—' }} {{ $c->is_active ? 'Ativo' : 'Inativo' }}
Editar
@csrf @method('DELETE')
Nenhum cliente cadastrado.
@if ($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection