@extends('layouts.app') @section('content')
Volver
Mesa: {{ $table->name }}
Zona: {{ $table->area->name }}
@if($order) @endif
{{ auth()->user()->name }}
@foreach($categories as $category) @endforeach
@foreach($categories as $category) @foreach($category->products as $product)
@if($product->image) @else
@endif
{{ $currency ?? 'S/' }}{{ number_format($product->price, 0) }}
@if(!is_null($product->stock))
Stock: {{ $product->stock }}
@endif
{{ $product->name }}
@endforeach @endforeach
Cuenta Actual
@include('pos.partials.cart', ['order' => $order])
@if($order) @endif @endsection