@extends('layouts.app') @section('title','Cobranças') @section('content')
| Cliente | Descrição | Valor | Vencimento | Status | Ações |
|---|---|---|---|---|---|
| {{ $c->client->name ?? '-' }} | {{ $c->description }} | R$ {{ number_format((float)$c->amount,2,',','.') }} | {{ \Carbon\Carbon::parse($c->due_date)->format('d/m/Y') }} | {{ $c->status }} | Editar @if($c->status !== 'paid') @if(!$c->pix_qr_code) @endif @endif 🔗 Link |
| Nenhuma cobrança ainda. | |||||