@extends('layouts.dashboard') @section('page_title', 'ACCOUNTING EXPORT') @section('content')
Back
Accounting Export Preview
Download IIF

ACCOUNTING EXPORT PREVIEW

PREVIEW (NOT YET EXPORTED)
Preview of invoices in the selected date range. Nothing has been marked as exported.
From: {{ $rangeFrom ?? '—' }}  ›  To: {{ $rangeTo ?? '—' }}
@forelse ($rows as $row) @empty @endforelse @if ($rows->isNotEmpty()) @endif
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) }}
@if ($rows->isNotEmpty())
QuickBooks IIF Output
{{ $iif }}
@endif
@endsection