Форма обновления маршрута Laravel 5.6

This is the mean problem
I have controllers structures like this 

Файловые структуры

And i am using this syntax to make routes which is worked good for me

веб/маршруты

Updating form is

{{ Form::open(array('method'=>'POST','route' => ['categories.update', $category->id])) }}

i got this error 

Ошибка

Any Solution ?? 

person Roufail    schedule 22.02.2018    source источник


Ответы (1)


Используйте метод put:

{{ Form::open(array('method'=>'PUT','route' => ['categories.update', $category->id])) }}

Поскольку Route::resource() создает PUT маршрут для update метода.

Вы можете увидеть все зарегистрированные маршруты с их HTTP-глаголами и именами маршрутов с помощью этой команды:

php artisan route:list
person Alexey Mezenin    schedule 22.02.2018