{{__('Name')}} |
{{__('Price')}} |
{{__('Qty')}} |
{{__('Tax')}} |
{{__('Amount')}} |
@foreach (json_decode($estimate->selected_products) as $product)
{{$product->name}} |
{{@$estimate->currency->symbol}} {{$product->price}} |
{{$product->quantity}} |
{{$product->tax_amount}} % |
{{@$estimate->currency->symbol}} {{$product->total_p_amount}} |
@endforeach
|
|
|
{{__('Sub Total')}} |
{{@$estimate->currency->symbol}} {{@$estimate->sub_total}} |
|
{{__('Discount')}} |
{{@$estimate->discount_type_selected}} |
{{@$estimate->discount_percentage}} % |
{{@$estimate->currency->symbol}} {{@$estimate->discount_value}} |
|
|
|
{{__('Adjustments')}} |
{{@$estimate->currency->symbol}} {{@$estimate->adjustments}} |
|
|
|
{{__('Total Amount')}} |
{{@$estimate->currency->symbol}} {{@$estimate->total_amount}} |
{{-- estimate Products Table ends --}}