@extends('admin.layouts.master-soyuz') @section('title','View order #'.$order->order_id.' | ') @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('Inhouse Orders') }} @endslot @slot('menu1') {{ __('View Order') }} @endslot @slot('button')
@endslot @endcomponent# | Product | Gross Price | Qty. | Tax | Subtotal |
---|---|---|---|---|---|
{{ $key+1 }} | {{ $item['product_name'] }}
Origin : {{ $item['origin'] ?? '-' }} |
{{ sprintf("%.2f",($item['product_price']*$item['product_qty'])) }} | {{ $item['product_qty'] }} | {{ sprintf("%.2f",$item['product_tax']) }} | {{ sprintf("%.2f",$item['product_total']) }} |
{{__('No items found in this order !') }} |
Payment Methods:
{{ $order->payment_method }}@if($order['additional_note'] != NULL)
Addtional Note:
{!! $order['additional_note'] !!} @endifSubtotal: | {{ sprintf('%.2f',$order['subtotal']) }} |
---|---|
Tax: |
{{ sprintf('%.2f',$order['total_tax']) }} ({{ $order['tax_rate'] }}%)
@if($store->state['id'] != $order->states['id']) (IGST) {{ sprintf('%.2f',$order['total_tax']) }} ({{ $order['tax_rate'] }}%) @endif @if($store->state['id'] == $order->states['id']) (SGST) {{ sprintf('%.2f',$order['total_tax']/2) }} ({{ sprintf("%.2f",$order['tax_rate']/2) }}%) (CGST) {{ sprintf('%.2f',$order['total_tax']/2) }} ({{ sprintf("%.2f",$order['tax_rate']/2) }}%) @endif |
Shipping: | {{ sprintf('%.2f',$order['total_shipping']) }} |
Adjustable Amount: | {{ sprintf('%.2f',$order['adjustable_amount']) }} |
Total: | {{ sprintf('%.2f',$order['grand_total']) }} |
{{ config('app.name') }}
{{ __('Authorised Signature') }} |