@if(isset($settings['company_logo']))
@endif
{{ $settings['company_name'] ?? 'MI RESTAURANTE' }}
{{ $settings['company_address'] ?? 'Dirección del Local' }}
Tel: {{ $settings['company_phone'] ?? '---' }}
{{ now()->format('d/m/Y H:i') }}
TICKET: #{{ str_pad($order->id, 6, '0', STR_PAD_LEFT) }}
@if($order->client_name && $order->client_name != 'Público')
Cli: {{ Str::limit($order->client_name, 20) }}
@endif
MESA: {{ $order->table->name ?? 'BARRA' }}
@foreach($order->details as $detail) @endforeach
C. DESCRIPCION TOTAL
{{ $detail->quantity }} {{ $detail->product->name }} @if($detail->note)
({{ $detail->note }}) @endif
{{ number_format($detail->quantity * $detail->price, 2) }}
Subtotal: {{ $settings['currency_symbol'] ?? 'S/' }} {{ number_format($order->total - ($order->tip ?? 0) + ($order->discount ?? 0), 2) }}
@if($order->discount > 0)
Descuento: -{{ number_format($order->discount, 2) }}
@endif @if($order->tip > 0)
Propina: {{ number_format($order->tip, 2) }}
@endif
TOTAL A PAGAR: {{ $settings['currency_symbol'] ?? 'S/' }} {{ number_format($order->total, 2) }}
F. PAGO: {{ strtoupper($order->payment_method) }}
RECIBIDO: {{ number_format($order->received_amount, 2) }} VUELTO: {{ number_format($order->change_amount, 2) }}