@extends('layouts.adminLayout.admin_design') @section('content')

{{ $title }}

From
{{ $orderDetail['from']['business_name'] }}
{{ $orderDetail['from']['address_line_f'] }}
{{ $orderDetail['from']['address_line_s'] }}, {{ $orderDetail['from']['city'] }}, {{ $orderDetail['from']['state'] }}
Phone: {{ $orderDetail['from']['phone'] }}
Email: {{ $orderDetail['from']['email'] }}
To
John Doe
795 Folsom Ave, Suite 600
San Francisco, CA 94107
Phone: (555) 539-1037
Email: john.doe@example.com
@if(Helper::widgetAccess('show_column_tax_amount')) @endif @foreach($orderDetail['items'] as $item) @if(Helper::widgetAccess('show_column_tax_amount')) @endif @endforeach
Item Id Product Name Product Sku Quantity Price Discount AmountTax Amount
{{ $item->id }} {{ $item->product_name }} {{ $item->product_sku }} {{ $item->quantity }} {{ storecurrencyshop().$item->price }} {{ $item->discount_amount }}{{ storecurrencyshop().$item->tax_amount }}

Payment Methods:

{{ $orderDetail['order']['order_payment_type'] }}

@if($orderDetail['order']['order_note'] != '') {{ $orderDetail['order']['order_note'] }} @else No order comment available @endif

@if(Helper::widgetAccess('show_column_tax_amount')) @endif
Subtotal : {{storecurrency().$orderDetail['order']['order_sub_total'] }}
Tax : {{storecurrency().$orderDetail['order']['tax_amount'] }}
Total: {{storecurrency().$orderDetail['order']['order_total'] }}
@endsection