Back

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

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

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

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

Invoice To:

Fullname:

{{$sale->customer->name}}

Contact:

{{$sale->customer->phone}}

Email:

{{$sale->customer->email}}

Country:

{{$sale->customer->country}}

State/Province:

{{$sale->customer->state}}

City:

{{$sale->customer->city}}

Postal Code:

{{$sale->customer->postal_code}}

Full Address:

{{$sale->customer->street_address}}

Invoice Info:

Invoice No:

#{{$sale->id}}

Order Date:

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

@if($sale->due_date)

Due Date:

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

@endif

Payment Status:

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

@foreach ( $sale->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}}