@extends('layouts.admin-layout') @section('title', 'Order Details') @section('content')

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

Customer:{{ $order->user ? $order->user->first_name : 'No user found' }}

Status: {{ $order->status }}

Total: ${{ number_format($order->total_price, 2) }}

@foreach($order->items as $item) @if($item->color == 'Select Color') @else @endif @endforeach
Item Name Quantity Size Color Price Subtotal
{{ $item->product->product_name ?? '-' }} {{ $item->quantity ?? '-' }} {{ $item->size ?? '-' }}{{ 'No Color' }}{{ $item->color ?? '-' }}${{ number_format($item->price, 2) ?? '-'}} ${{ number_format($item->quantity * $item->price, 2) ?? '-'}}
@endsection