@extends('layouts.admin')
@section('title', 'Laundry Orders')
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| # | Type | Guest/Room | Total | Status | |
|---|---|---|---|---|---|
| {{ $o->id }} | {{ ucfirst($o->type) }} | {{ $o->guest ? $o->guest->last_name : ($o->room?->number ?? '—') }} | {{ $currency }} {{ number_format($o->total, 2) }} | View | |
| No orders | |||||