@extends('layouts.admin')
@section('title', 'Minibar Consumptions')
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| Date | Room | Product | Qty | Total | Charged | |
|---|---|---|---|---|---|---|
| {{ $c->created_at?->format('M j, Y') }} | {{ $c->room?->number ?? '—' }} | {{ $c->minibarProduct?->name ?? '—' }} | {{ $c->quantity }} | {{ $currency }} {{ number_format($c->total, 2) }} | {{ $c->charged ? 'Yes' : 'No' }} | @if(!$c->charged)@endif |
| No consumptions | ||||||