@extends('layouts.master') @section('meta') @stop @section('content')

Total Amount Due: £{{ number_format($totalDue, 2) }}

Reset Download Pdf
@foreach($orders as $row) @endforeach
Customer Name Phone Number Email Total Amount Paid Amount Due Amount Created Date
{{ $row->customer->name }} {{ $row->customer->phone_number }} {{ $row->customer->email }} £{{ number_format($row->total, 2) }} £{{ number_format($row->total - $row->amount_due, 2) }} £{{ number_format($row->amount_due, 2) }} {{date("d M, Y h:i a", strtotime($row->created_at))}}
@stop @section('scripts') @stop