The following draws are scheduled for this job. To add a draw, click the icon to the right.

Contract Summary

{{$job->formatPrice($job->contract->EstimateAmount)}}
{{$job->formatPrice($job->contract->ContractAmount)}}
{{$job->formatPrice($job->contract->RequiredDepositAmount)}}
= Balance Contract
{{$job->formatPrice($job->getBalanceTotal())}}
+ Total Addendums
{{$job->formatPrice($job->getAddendumTotal())}}
= Bal Cont + Add
{{$job->formatPrice($job->getBalanceTotal() + $job->getAddendumTotal())}}

Payments Received

Draws Pmnts Recd
{{$job->formatPrice($job->getDrawsTotals())}}
+ Add Pmnts Recd
{{$job->formatPrice($job->getAddendumPaymentsTotal())}}
= Total Pmnts Recd
{{$job->formatPrice($job->getDrawsTotals() + $job->getAddendumPaymentsTotal())}}
Balance Owed
{{$job->formatPrice($job->getBalanceOwed())}}
{{$job->formatPrice($job->contract->WriteOffAmount)}}
= Funds Yet Owed
{{$job->formatPrice($job->getBalanceOwed() - $job->contract->WriteOffAmount)}}

The following draws are scheduled for this job. To add a draw, click the icon to the right.

@php $k = 1; $totalPercentage = 0; @endphp @foreach($job->draws as $draw) @php $totalPercentage+= $draw->Percentage; @endphp @endforeach
Draw No Percentage Seq Draw Due After Draw Amount Payments Outstanding Options
{{$k++}} - {{$draw->id}} {{$draw->Percentage}} {{$draw->phase->Seq}} {{$draw->phase->type->Name}} {{$job->formatPrice($draw->getDrawAmount())}} {{$job->formatPrice($draw->getPayment())}} {{$draw->getOutstanding(true)}}
@foreach ($draw->payments as $payment) @endforeach
Payment Date Amount # Comments
{{\Carbon\Carbon::parse($payment->PaymentDate)->toDateString()}} {{$job->formatPrice($payment->Amount)}} {{$payment->ReferenceCheck}} {{$payment->Comment}}
    @if($permissions['edit_project_draws_adds_draw_schedule_options_table']) @endif
{{$totalPercentage}} Draw Total's {{$job->formatPrice($job->getBalanceTotal())}} {{$job->formatPrice($job->getDrawsTotals())}} {{$job->formatPrice($job->getOutstandingTotal())}}

The following transactions have been added to the project.

@if($permissions['add_project_draws_adds_addendums_table']) Add Addendum @endif
@php $k =1; @endphp @foreach ($job->addendums as $addendum) @php $flag = true; @endphp @endforeach
Number Type Date Phase Amount Payments Options
{{$k++}} - {{$addendum->id}} {{$addendum->type->Name}} {{$addendum->Date}} {{$addendum->phase->type->Name}} {{$addendum->formatPrice($addendum->Amount)}} {{$addendum->formatPrice($addendum->getPaymentTotal())}}
@foreach ($addendum->payments as $payment) @php $flag = false; @endphp @endforeach
Payment Date Amount # Comments
{{\Carbon\Carbon::parse($payment->PaymentDate)->toDateString()}} {{$job->formatPrice($payment->Amount)}} {{$payment->ReferenceCheck}} {{$payment->Comment}}
    @if($permissions['edit_project_draws_adds_addendums_options_table']) @if ($flag) @endif @endif