@extends('layouts.empresa') @section('title', 'Comandas abertas') @section('content')
| Mesa | Cliente | Garçom | Status | Aberta em | Total | |
|---|---|---|---|---|---|---|
| #{{ $c->mesa?->numero }} @if($c->mesa?->nome)· {{ $c->mesa->nome }}@endif | {{ $c->cliente_nome ?: '—' }} | {{ $c->garcom?->name ?? '—' }} | {{ $c->status->label() }} | {{ $c->aberta_em?->format('d/m/Y H:i') }} | R$ {{ number_format((float) $c->total, 2, ',', '.') }} | Abrir @if (auth()->user()->role !== \App\Models\User::ROLE_ATENDENTE) Fechamento @endif |
| Nenhuma comanda aberta. | ||||||