@extends('layouts.backend.app') @section('content')

Order Details

@foreach($orderItems as $index => $item) @endforeach
# Product Image Product Name Qty Price Total
{{ $index + 1 }} {{ $item->product->title }} {{ $item->quantity }} ₹{{ number_format($item->discount_price, 2) }} ₹{{ number_format($item->quantity * $item->discount_price, 2) }}

Shipping Details

Name{{ ucwords($order->shipping_name) }}
Email{{ $order->shipping_email }}
Phone{{ $order->shipping_phone }}
Address{{ ucwords($order->shipping_address) }}
City{{ ucwords($order->shipping_city) }}
State{{ ucwords($order->shipping_state) }}
Zip{{ $order->shipping_zip }}
Country{{ ucwords($order->shipping_country) }}

Payment Information

Transaction ID{{ $order->transaction_id ?? '-' }}
Payment Method{{ $order->payment_method ?? '-' }}
Status{{ $order->status ?? '-' }}
@endsection