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_contact}}

Email:

{{$sale->customer_email}}

Country:

{{$sale->customer_country}}

State/Province:

{{$sale->customer_state}}

City:

{{$sale->customer_city}}

Postal Code:

{{$sale->customer_postalcode}}

Full Address:

{{$sale->customer_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 Qty Price Total
{{$k}} {{$item->product->sku}} - {{$item->product->title}} {{$item->description}} {{$item->quantity}} {{$item->price}} {{$item->total}}