@extends('layouts.customer') @section('content')
@if(isset($unpaidOrders) && $unpaidOrders->count() > 0)
طلبات غير مدفوعة

لديك {{ $unpaidOrders->count() }} {{ $unpaidOrders->count() > 1 ? 'طلبات' : 'طلب' }} غير مدفوع على هذه الطاولة:

@endif
طاولة: {{ $table->name }} - سعة: {{ $table->capacity }} أشخاص
@foreach($products as $category => $categoryProducts)

{{ $category }}

@foreach($categoryProducts as $product)
@if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }}
{{ number_format($product->price, 2) }}

{{ $product->description }}

@endforeach
@endforeach
طلبك
@if(isset($currentOrder) && $currentOrder && $currentOrder->items->count() > 0)
لديك طلب حالي:
    @foreach($currentOrder->items as $item)
  • {{ $item->product->name }} x {{ $item->quantity }}
  • @endforeach
عرض تفاصيل الطلب
@endif

سلة الطلبات فارغة

اضغط على "إضافة للطلب" لإضافة منتجات

المجموع: 0.00
@endsection @section('scripts') @endsection