@extends('layouts.admin')
@section('title', 'Laundry Order #'.$order->id)
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| Description | Qty | Unit Price | Total |
|---|---|---|---|
| {{ $item['description'] ?? '—' }} | {{ $item['quantity'] ?? 0 }} | {{ number_format($item['unit_price'] ?? 0, 2) }} | {{ number_format($item['total'] ?? (($item['quantity'] ?? 0)*($item['unit_price'] ?? 0)), 2) }} |