I have done some changes to my controller I replaced
$input = \Input::all();
with
$input = \Input::with('menu')->all();
but now I get this error in my firebug
{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Call to undefined method Illuminate\\Http\\Request::with()","file":"\/Applications\/MAMP\/htdocs\/laravel-auth\/vendor\/laravel\/framework\/src\/Illuminate\/Support\/Facades\/Facade.php","line":208}}
I managed to fix it. My select box didn't have the menu_id on it
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community