@extends('layouts.app') @section('title', 'My Orders') @section('content')
Track and manage your food orders
| Order # | Date | Items | Total | Status | Actions |
|---|---|---|---|---|---|
| {{ $order->order_number }} |
{{ $order->created_at->format('M d, Y') }} {{ $order->created_at->format('H:i') }} |
@if($order->items->count() > 0) @php $itemCount = $order->items->count(); $firstItem = $order->items->first()->menu->name ?? 'Item'; @endphp {{ $firstItem }} @if($itemCount > 1) +{{ $itemCount - 1 }} @endif @else No items @endif | Rp {{ number_format($order->final_amount, 0, ',', '.') }} | @php $statusColor = $statusColors[$order->status] ?? 'secondary'; $statusText = str_replace('_', ' ', ucfirst($order->status)); @endphp {{ $statusText }} |