Claims

@if (session('success'))
{{ session('success') }}
@endif
@php $status = [ "Not Ready" => "dark", "Ready to Invoice" => "info", "Assigned to Month" => "success", "Invoice Sent" => "danger", "Paid" => "success", "Not Paid" => "warning", "DNI" => "danger", "Duplicate" => "info" ]; $componentBadge = [ "RetailADR" => "primary", "CommsADR" => "success", "UtilitiesADR" => "warning", "Consumer Arbitration" => "secondary", "Data Arbitration" => "info" ]; $schemeBadge = [ "Arbitration" => "info", "ADR" => "success" ]; $withBadge = [ "Claimant" => "info", "Respondent" => "success", "Admin" => "primary", "Adjudicator" => "secondary" ]; @endphp @foreach( $invoices as $invoice ) @endforeach
Claim ID Customer Name Company Case Created Claim Ref Status Action Date
{{ $invoice->claim_id }} {{ $invoice->claim->customer ? $invoice->claim->customer->first_name." ".$invoice->claim->customer->last_name : ""}} {{ $invoice->claim->retailer ? $invoice->claim->retailer->name : ''}} {{ date('d/m/Y', strtotime($invoice->claim->created_at)) }} {{ $invoice->claim->reference_number ? $invoice->claim->reference_number : ''}} {{ $invoice->invoice_status ? $invoice->invoice_status->name : '' }} {{ date('d/m/Y', strtotime($invoice->claim->last_date)) }}