我想更改默认请求网址!恩。
获取/photos/{photo}/edit change
到/photos/{photo}/update
GET /photos/create
更改为/photos/createOnePhoto
答案 0 :(得分:1)
您无法更改默认resource()
路线。您可以使用->except(['update', 'create'])
告诉Laravel不构建其中的一些。
手动添加所有自定义路线:
Route::get('photos/createOnePhoto', ['as' => 'photo.createOne', 'uses' => 'PhotoController@createOnePhoto'])