@extends('dashboard._theme_dashboard') @section('content')
| ID | Data de Pagamento | Conta Bancária | Conta de Remessa | Itens | Valor Total | Status | Data de Criação | Ações |
|---|---|---|---|---|---|---|---|---|
| {{ $batch->batch_id }} | {{ $batch->payment_date->format('d/m/Y') }} | {{ $batch->account->account_name ?? 'N/A' }} | {{ $batch->shipmentAccount->shipment_account_name ?? 'N/A' }} | {{ $batch->processed_items }}/{{ $batch->total_items }} | {{ $batch->formattedTotalValue() }} | @if($batch->status == 'Pending') Pendente @elseif($batch->status == 'Processing') Processando @elseif($batch->status == 'Completed') Concluído @elseif($batch->status == 'Failed') Falha @endif | {{ $batch->created_at->format('d/m/Y H:i') }} | Detalhes |