@include('home.partials.searchResults')
@foreach($specialCategories as $specialCategory)
@if($specialCategory->contentType === 'ITEMS' && isset($specialCategory->menuItems) && count($specialCategory->menuItems))
{{ $specialCategory->categoryName }}
{{ $specialCategory->description }}
Të Gjitha
@foreach($specialCategory->menuItems as $item)
{{ $item->itemName }}
@if($item->oldPrice < $item->itemPrice && round($item->oldPrice) != 0)
{{ $country->currency->isSymbolAfterAmount ? round($item->oldPrice, $country->currency->decimalPlaces) . ' ' . $country->currency->symbol : $country->currency->symbol . ' ' . round($item->oldPrice, $country->currency->decimalPlaces) }}
{{ $country->currency->isSymbolAfterAmount ? round($item->itemPrice, $country->currency->decimalPlaces) . ' ' . $country->currency->symbol : $country->currency->symbol . ' ' . round($item->itemPrice, $country->currency->decimalPlaces) }}
@else
{{ $country->currency->isSymbolAfterAmount ? round($item->itemPrice, $country->currency->decimalPlaces) . ' ' . $country->currency->symbol : $country->currency->symbol . ' ' . round($item->itemPrice, $country->currency->decimalPlaces) }}
@endif
@endforeach
@endif
@if($specialCategory->contentType === 'CATEGORIES' && isset($specialCategory->categories) && count($specialCategory->categories))
{{ $specialCategory->categoryName }}
{{ $specialCategory->description }}
Të Gjitha
@foreach($specialCategory->categories as $category)
{{ $category->categoryName }}
@endforeach
@endif
@if($specialCategory->contentType === 'BANNER')
{{ $specialCategory->categoryName }}
{{ $specialCategory->description }}
@endif
@endforeach
@if($allRestaurantsCategory && count($allRestaurants))
{{ $allRestaurantsCategory->categoryName }}
{{ $allRestaurantsCategory->description }}
@foreach($allRestaurants as $restaurant)
{{ $restaurant->restaurantName }}
{{ $restaurant->categoriesLabel }}
{{ $restaurant->deliveryTime }} min ·
{{ round($restaurant->averageRate, 1) }}
{{ $restaurant->deliveryTime }}
Min
@endforeach
@endif