@extends('layouts.basic') @section('styles') @endsection @section('content')

Invoice

Invoice Id - {{ $quotation->invoice_number }}

Date - {{ $quotation->date }}

From To

Mountain View,

California,

United States

Contact: (650) 253-0000

Customer Name: {{ $quotation->customer->customer_name }}

Mobile Number: {{ $quotation->mobile_number }}

Billing Address: {{ $quotation->billing_address }}

Delivery Address: {{ $quotation->delivery_address }}

Email Address: {{ $quotation->email_address }}

Credit Limit: {{ $quotation->credit_limit }}

{{--
Payment Method Shipping Method
Cash On Delivery Free Shipping - Free Shipping
--}}
@foreach ($productDetail as $product) @endforeach
Product Name Quantity Price Total Price
{{ $product->product->name }} {{ $product->quantity }} {{ $product->price }} {{ $product->subtotal }}

Sub Total :

Tax (18%) :

@if ($quotation->shipping != '')

Shipping:

@endif @if ($quotation->discount_type != '')

Discount:

@endif

Total Total:

{{ $quotation->sub_total_sum }}

{{ $quotation->tax }}

@if ($quotation->shipping != '')

{{ $quotation->shipping }}

@endif @if ($quotation->discount_type != '')

{{ $quotation->discount_amount }}

@endif

{{ $quotation->total }}

{{--
Remarks

{{ $quotation->remarks }}

--}} {!! $socialShare !!}
@endsection