{{__('label.items')}}
-
@foreach($category->categories_has_recipes as $item)
@php
$categories = isset($item->categories)?$item->categories->pluck('category_id'):NULL;
$row_id = $item->id.'-'.(isset($categories[0])?$categories[0]:0);
@endphp
-
@php $img = isset($item->main_images)?$item->main_images->file_name:env('APP_ASSETS').'img/user/1.png'; $img = str_replace(env('AWS_URL'),$imgix,$img).'?fm=webp&h=60&w=60&q=50&fit=center&crop=center'; @endphp
{!! $item->name !!} @if(!empty($item->arabic_name)) ( {!! $item->arabic_name !!} ) @endif
( {!! number_format($item->price,2) !!} ){!! ($item->status==1)? 'Status: '.__('label.active').' ':'Status: '.__('label.deactive').' ' !!} {!! $item->is_customized?'Customizable: '.__('label.yes').'':'Customizable: '.__('label.no').'' !!}
@endforeach