@extends('layouts.dashboard') @section('page_title', 'ACCOUNTING EXPORT') @section('content')
| Invoice # | Load # | Invoice Date | Customer | Status | Amount | $ |
|---|---|---|---|---|---|---|
| {{ $row['invoice'] }} | {{ $row['load'] }} | {{ $row['invoice_date'] }} | {{ $row['customer'] }} | @if ($row['exported']) Exported @else New @endif | ${{ number_format($row['amount'], 2) }} | {{ $row['currency'] }} |
| No invoices found for the selected date range. | ||||||
| TOTAL | ${{ number_format($total, 2) }} | |||||
{{ $iif }}
@endif