{{-- --}} @vite(['resources/css/app.css', 'resources/js/app.js']) منوی رستوران

Coffee Nazari ☕✨

@foreach ($categories as $category)

{{ $category->name }}

@if ($category->products->isEmpty())

محصولی در این دسته‌بندی موجود نیست.

@else
    @foreach ($category->products->take(7) as $product) @if (!$product->is_disabled)
  • {{ $product->name }}

    {{ $product->description ?? 'بدون توضیح' }}

    @if($product->price > 0) {{ number_format($product->price) }} تومان @else متغیر @endif
  • @endif @endforeach
@endif
@endforeach