| Data Venc. | Descrição | Fornecedor | Valor | Status |
|---|---|---|---|---|
| {{ $account->due_date->format('d/m/Y') }} | {{ $account->description }} | {{ $account->supplier->name ?? '-' }} | R$ {{ number_format($account->amount, 2, ',', '.') }} | @switch($account->status) @case('pending') Pendente @break @case('paid') Pago @break @default {{ ucfirst($account->status) }} @endswitch |
Nenhuma conta a pagar no período.
@endif| Data Venc. | Descrição | Cliente | Valor | Status |
|---|---|---|---|---|
| {{ $account->due_date->format('d/m/Y') }} | {{ $account->description }} | {{ $account->customer->name ?? '-' }} | R$ {{ number_format($account->amount, 2, ',', '.') }} | @switch($account->status) @case('pending') Pendente @break @case('received') Recebido @break @default {{ ucfirst($account->status) }} @endswitch |
Nenhuma conta a receber no período.
@endif