@extends('layouts.welcomelayouts.app') @section('title') My Balance | subtitle @endsection @section('SEO') @endsection @push('css') @endpush @section('contents')
@include('users.include.sidebar')

Details of Order ID# {{ $order->id }}

From:
{{ $appSetting->h1 }}.
{{$appSetting->address_one}}
Mobile: {{$appSetting->mobile}} Email: {{$appSetting->email}}

Invoice No.

INV-{{ $order->id }}

To:
{{ $order->name }}
{{ $order->address }}
Mobile: {{ $order->mobile }}
Email: {{ $order->email }}

Invoice Date: {{ $order->created_at->toDateString() }}
{{ ucfirst($order->order_status) }} Date: @if($orderS = $order->order_status) {{ $order[$orderS.'_at']->toDateString() }} @endif

@foreach($order->items as $item) @endforeach
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
@if($order->delivery_area)
{{ $order->delivery_area }}
@endif
@endsection @push('js') @endpush