@extends('template.layouts.template-base') @section('title', 'Order Management- Details') @section('styles') @endsection @section('content')
{{ $item->pack_size_name }}
₹{{ number_format($item->price - $item->discount_amount, 2) }} ₹{{ number_format($item->price, 2) }}
Qty - {{ $item->quantity }}
Customer details not available.
@endif
{{ $order->shippingAddress->address_line1 }},
@if($order->shippingAddress->address_line2)
{{ $order->shippingAddress->address_line2 }},
@endif
@if($order->shippingAddress->district)
{{ $order->shippingAddress->district }},
@endif
{{ $order->shippingAddress->pincode }}
@if($order->shippingAddress->state)
{{ $order->shippingAddress->state }},
@endif
{{ $order->shippingAddress->country ?? 'India' }}.
No delivery address available.
@endif
{{-- Fix #5 — fixed unclosed span --}}
{{ $order->billingAddress->address_line1 }},
@if($order->billingAddress->address_line2)
{{ $order->billingAddress->address_line2 }},
@endif
@if($order->billingAddress->district)
{{ $order->billingAddress->district }},
@endif
{{ $order->billingAddress->pincode }}
@if($order->billingAddress->state)
{{ $order->billingAddress->state }},
@endif
{{ $order->billingAddress->country ?? 'India' }}.
Same as delivery address.
@endif
@if($currentStep >= 1) Your order has been confirmed on {{ $order->created_at->format('d M, Y - h:iA') }} @else Waiting for confirmation @endif
@if($currentStep >= 2) Your order has been packed @else Pending @endif
@if($currentStep >= 3) Your order has been shipped @else Pending @endif
@if($currentStep >= 4) Your order is out for delivery @else Pending @endif
@if($currentStep >= 5) Your order has been delivered @else Pending @endif
Invoice has been sent successfully
The invoice has been downloaded successfully
Delivery Vehicle has been added successfully