@use(App\Models\Checkout) @use(App\Models\Invoice) @extends('adminlte::layouts.app') @section('htmlheader_title') Payment Cart @endsection @section('page_title') Payments @endsection @section('contentheader_title') Payment Cart @endsection @section('contentheader_description') @endsection @section('main-content')
Invoices to Pay
@csrf @foreach (($invoices=Invoice::whereIn('id',session('invoice.cart',[]))->get()) as $io) @endforeach
Invoice Balance Due
{{ $io->sid }} {{ number_format($io->due,2) }}
Sub Total {{ number_format($invoices->sum('due'),2) }}
Payment Fees TBA
Payment Total TBA
Pay Add Invoice
@endsection @section('page-scripts') @append