@extends('apex-layouts.main') @section('title','Shop Recipes List') @section('header-right') Total:  {{ count($recipe) }} @endsection @section('content')
@foreach($recipe as $value) @endforeach
# Image title total grams total calories cuisines Rating Created
{{$value->id}} logo:env("NO_IMAGE_URL")}}" alt="{{$value->title}}">

{{$value->title}}

{!! $value->category!!} Recipe

{{$value->totalGrams}} {{ round($value->totalCalories, 2)}} {{($value->cuisines) ? $value->cuisines:'-'}} {{($value->rating)?$value->rating:0}}

{!! $value->userName !!}

{{\App\helpers\ViewCommonHelper::getDateFormat($value->created_at)}} {{\App\helpers\ViewCommonHelper::getDateFormat($value->updated_at)}}
@endsection @section('scripts') @stop @section('styles') @stop