@extends('layouts.welcomelayouts.app') @section('title')
Details of Order ID# {{ $order->id }}
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 | Total Price |
|---|---|---|---|
{{ $item->product_name }}
Product ID:{{ $item->product_id }},
@if($item->color)
Color: {{ $item->color }},
@endif
@if($item->size)
Size: {{ $item->size }},
@endif
Give a Rivew
|
{{ $item->total_quantity }} | {{ number_format($item->unit_price -$item->unit_pro_discount,0) }} | {{ number_format($item->final_price,0) }} |
| Sub Total : | {{$appSetting->currency}} {{ number_format($order->final_price,0) }} |
| Delivery Cost : | {{$appSetting->currency}} {{ number_format($order->delivery_cost,0) }} |
| TOTAL : | {{$appSetting->currency}} {{ number_format($order->final_price + $order->delivery_cost,0) }} |
| Total Weight : | {{ $order->total_weight }} Kg |