@extends('front.qrmenu.layout') @section('page-heading') {{__('Menu')}} @endsection @section('content')
@foreach ($categories as $key => $category)
@foreach ($category->subcategories()->get() as $subcat) @endforeach
@if($category->products()->where('status', 1)->count() > 0) @foreach ($category->products()->where('status', 1)->get() as $product)
@if ($product->is_special == 1)
{{__('Special')}}
@endif
@endforeach @else

{{__('Product Not Found')}}

@endif
@endforeach
{{-- Variation Modal Starts --}} @include('front.qrmenu.partials.qr-variation-modal') {{-- Variation Modal Ends --}} @endsection