@extends('layouts.app', ['title' => 'Ingredientes para ' . $item->nome]) @section('content')

Ingredientes para o produto {{ $item->nome }}


{!!Form::open() ->post() ->route('produtos-cardapio.store-ingrediente') !!} @csrf
{!!Form::text('ingrediente', 'Ingrediente')->required() !!}

{!!Form::close()!!}
@foreach($item->ingredientes as $a) @endforeach
Ingrediente Ações
{{ $a->ingrediente }}
@method('delete') @csrf
@endsection