@extends('layouts.adminlayouts.app') @section('title')
Invoice Date: {{ $order->created_at->toDateString() }}
{{ ucfirst($order->order_status) }} Date:
@if($orderS = $order->order_status)
{{ $order[$orderS.'_at']->toDateString() }}
@endif
| Item List | Quantity | Unit Price | {{--Tax | --}}Unit Discount | Total Price |
|---|---|---|---|---|---|
{{ $item->product_name }}
Product ID:{{ $item->product_id }},
@if($item->color)
Color: {{ $item->color }},
@endif
@if($item->size)
Size: {{ $item->size }},
@endif
|
{{ $item->total_quantity }} | {{ $item->unit_price }} | {{ $item->unit_pro_discount }} | {{ $item->final_price }} |
| Sub Total : | {{$appSetting->currency}} {{ $order->final_price }} |
| Delivery Cost : | {{$appSetting->currency}} {{ $order->delivery_cost }} |
| TOTAL : | {{$appSetting->currency}} {{ $order->final_price + $order->delivery_cost }} |
| Total Weight : | {{ $order->total_weight }} Kg |