@extends('layouts.dashboard') @section('page_title', 'BATCH INVOICING') @section('content')
Back
Batch Invoicing
Batch Options
Batch Note
This is a static UI preview. Backend logic will be connected later.
Loads Included
3 selected
@php $loads = [ ['load' => '233', 'date' => '2026-03-31', 'customer' => 'CLT International', 'entity' => 'Perrella Group Inc', 'amount' => '2,450.00', 'status' => 'Delivered'], ['load' => '201', 'date' => '2026-02-13', 'customer' => 'CLT International', 'entity' => 'HUNA TRANSPORT INC', 'amount' => '1,950.00', 'status' => 'Delivered'], ['load' => '189', 'date' => '2026-01-23', 'customer' => 'CLT International', 'entity' => 'ON ROUTE TRANSPORTATION', 'amount' => '3,120.00', 'status' => 'Delivered'], ]; @endphp @foreach($loads as $l) @endforeach
Load # Ship Date Customer Driver/Carrier Amount Status
{{ $l['load'] }} {{ $l['date'] }} {{ $l['customer'] }} {{ $l['entity'] }} ${{ $l['amount'] }} {{ strtoupper($l['status']) }}
@endsection