@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)
ID
Name
Local Name
Category
Actions
@endforeach
{{ $c->id }}
{{ $c->name }}
{{ $c->local_name }}
{{ isset($c->category->name) ? $c->category->name : '' }} / {{ isset($c->category->local_name) ? $c->category->local_name : '' }}