@extends('layouts.adminlayouts.app') @section('title')
Payment: @if($order->payment_status=='paid')Paid @else Unpaid @endif
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 }}
ID:{{ $item->product_id }}, Color: {{ $item->color }}, Size: {{ $item->size }} |
{{ number_format($item->total_quantity,0) }} | {{$appSetting->currency}} {{ number_format($item->unit_price - $item->unit_pro_discount,0) }} | {{$appSetting->currency}} {{ number_format($item->total_quantity*($item->unit_price-$item->unit_pro_discount),0) }} |
| Sub Total : | {{$appSetting->currency}} {{ number_format($order->final_price,0) }} |
| Delivery Cost : | {{$appSetting->currency}} {{ $order->delivery_cost }} |
| TOTAL : | {{$appSetting->currency}} {{ number_format($order->final_price + $order->delivery_cost,0) }} |
| Total Weight : | {{ $order->total_weight }} Kg |
| SL | Item List | Qty | Weight (Kg) | Vendor | Order Status | |
|---|---|---|---|---|---|---|
| {{ $i }} | {{ $item->product_name }}
ID:{{ $item->product_id }}, Color: {{ $item->color }}, Size: {{ $item->size }} |
{{ $item->total_quantity }} | {{ $item->total_quantity * $item->total_weight }} |
@if($item->seller_id)
Vendor ID:{{ $item->seller_id }},{{ $item->seller->title }} ({{ $item->seller->user->name }})
{{ $item->seller->mobile }},{{ $item->seller->address }},{{ $item->seller->city }} @endif {{ $item->order_status }}: {{ $item[$item->order_status.'_at'] }} |
||
| Payment Status: {{ $order->payment_status }} |