@extends('apex-layouts.main') @section('title','Ingredients List') @section('header-right') Total:  {{ $ingredients->total() }} {{-- --}} {{--
--}} {{-- @csrf--}} {{-- --}} {{--
--}} {{--
--}} {{-- Import--}} {{-- Export--}} @endsection @section('content')
@foreach($ingredients as $value) @endforeach
# image name calories created at updated at
{{$value->id}} logo:env('NO_IMAGE_URL')}}" src="#" alt="{{$value->name}}"> {{$value->name}} {{$value->calories}} {{\App\helpers\ViewCommonHelper::getDateFormat($value->created_at)}} {{\App\helpers\ViewCommonHelper::getDateFormat($value->updated_at)}}
@if($ingredients->total() > $ingredients->perPage()) @endif
@endsection @section('scripts') {{-- --}} @stop