@extends('apex-layouts.main') @section('title',"Shop Meals") @section('header-right') Total:  {{ count($meals) }} Recipes {!! \App\helpers\ViewCommonHelper::headerExportButton() !!} @endsection @section('content')
@foreach($meals as $meal) @endforeach
title Image Category total grams total calories Price Rating Created
{{$meal->id}}

{{$meal->title}}

logo: env("NO_IMAGE_URL")}}" alt="{{$meal->title}}"> {!! $meal->category !!}

{{$meal->type}}

{{$meal->totalGrams}} G {{ round($meal->totalCalories, 2)}} kcal {{($meal->perOrderAmount)??0}} {{($meal->rating)?$meal->rating:0}}

{{\App\helpers\ViewCommonHelper::getDateFormat($meal->created_at)}}

{{\App\helpers\ViewCommonHelper::getDateFormat($meal->updated_at)}}

@endsection @section('styles') @stop