Add Vendor Bill

Vendor Bill

To add an Bill, complete the form below then click Add.

@if ($type == 'phase')

{{$phase->job->id}}

{{$phase->job->customer->name()}}

Phase

{{$phase->type->Name}}

Salesperson

{{($phase->job->salesperson)?$phase->job->salesperson->contactInfo->name:''}}

Phase Estimates

Estimate Total

Actuals

Yet to Spend $

{{$phase->formatPrice($phase->EstTotal)}}

{{$phase->formatPrice($phase->TotalInvoiced)}}

{{$phase->formatPrice($phase->YetToSpend)}}

Existing Vendor Bills

@if(count($phase->payments) == 0) @endif @foreach($phase->payments as $payment) @endforeach
n/a
{{\Carbon\Carbon::parse($payment->InvoiceDate)->format('m/d/Y')}} {{$phase->formatPrice($payment->Amount)}}
{{$payment->vendor->name()}}
@elseif ($type =='fee')

{{$fee->job->id}}

{{$fee->job->customer->name()}}

Job Fee

{{$fee->type->Name}}

Salesperson

{{($fee->job->salesperson)?$fee->job->salesperson->contactInfo->name:''}}

Existing Invoices

@foreach($fee->payments as $payment) @endforeach
{{\Carbon\Carbon::parse($payment->InvoiceDate)->format('m/d/Y')}} {{$fee->formatPrice($payment->Amount)}}
{{$payment->vendor->name()}}
@endif
@include('proedge.modal.project.trackjobcost.bill.form')