@php
$recipes = NULL;
if(isset($resto))
$recipes = \App\Recipes::whereNull('deleted_at')->where('resto_id',$resto->id)->limit(10)->get();
@endphp
# |
Name |
Price | {{--
Description | --}}
Orders |
Comments |
Customizable |
Action |
@if(isset($recipes) && $recipes->count() > 0)
@foreach($recipes as $recipe)
@if(isset($recipe->main_images))
@else
@endif
|
{!! $recipe->name !!} |
{!! number_format($recipe->price,2) !!} | {{--
{!! substr($recipe->short_description,0,150) !!} | --}}
0 |
{!! $recipe->comments !!} |
{!! $recipe->active?'Yes':'No' !!} |
|
@endforeach
@endif