@extends('layouts/contentLayoutMaster') @section('title', 'Ingredient List') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@foreach($ingredients as $c) @endforeach
ID Name Local Name Category Actions
{{ $c->id }} {{ $c->name }} {{ $c->local_name }} {{ isset($c->category->name) ? $c->category->name : '' }} / {{ isset($c->category->local_name) ? $c->category->local_name : '' }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection