Back

{{Auth::user()->business->name}}

Phone: {{Auth::user()->business->contact}}

Email: {{Auth::user()->business->email}}

{{Auth::user()->business->street_address}}

Invoice To:

Fullname:

{{$model->vendor->name}}

Contact:

{{$model->vendor->phone}}

Email:

{{$model->vendor->email}}

Country:

{{$model->vendor->country}}

State/Province:

{{$model->vendor->state}}

City:

{{$model->vendor->city}}

Postal Code:

{{$model->vendor->postal_code}}

Full Address:

{{$model->vendor->address}}

Invoice Info:

Invoice No:

#{{$model->id}}

Order Date:

{{date('d-m-Y', strtotime($model->date))}}

@if($model->due_date)

Due Date:

{{date('d-m-Y', strtotime($model->due_date))}}

@endif

Payment Status:

{{$model->is_paid ? 'Paid' : 'Unpaid'}}

@foreach ( $model->items as $key => $item) @endforeach
# Product Price Qty Discount Tax Total
{{$k}} {{$item->product->sku}} - {{$item->product->title}} {{$item->description}} {{$item->price}} {{$item->quantity}} {{$item->discount}} {{$item->tax}} {{$item->total}}