@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_field() }}
Payment Method
@foreach ($invoices as $io) @endforeach
Invoice Balance Due
{{ $io->id }} {{ $io->due }}
Sub Total {{ number_format($invoices->sum('due'),2) }}
Payment Fees TBA
Payment Total TBA
@endsection @section('page-scripts') @css('//cdnjs.cloudflare.com/ajax/libs/select2/4.0.12/css/select2.min.css','select-css') @js('//cdnjs.cloudflare.com/ajax/libs/select2/4.0.12/js/select2.min.js','select-js') @append