@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
Payment Method
@foreach ($invoices 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
Add Invoice
@endsection @section('page-scripts') @append