@extends('layouts.empresa') @section('title', 'Relatórios de mesas') @section('content')
| Garçom | Comandas | Total |
|---|---|---|
| {{ $row->garcom_id ? ($garcons[$row->garcom_id] ?? '#'.$row->garcom_id) : '—' }} | {{ $row->qtd }} | R$ {{ number_format((float) $row->total_valor, 2, ',', '.') }} |
| Mesa | Comandas | Total |
|---|---|---|
| #{{ $row->numero }} {{ $row->nome }} | {{ $row->qtd }} | R$ {{ number_format((float) $row->total_valor, 2, ',', '.') }} |
| Produto | Qtd | Total |
|---|---|---|
| {{ $row->nome_produto }} | {{ $row->qtd }} | R$ {{ number_format((float) $row->total_valor, 2, ',', '.') }} |
| Sem dados no período. | ||