Laravel 5.0.x で rydurhmam/sentinel パッケージを使用していますが、デフォルトの mysite.com/profile ルートの処理方法を変更できません。
私のroutes.phpファイルで私は宣言しましたRoute::resource('profile', 'ProfileController');
php artisan route:list を呼び出すと、次のようになります。
| GET|HEAD | profile | sentinel.profile.show | Sentinel\Controllers\ProfileController@show | sentry.auth |
| GET|HEAD | profile/create | profile.create | App\Http\Controllers\ProfileController@create | sentry.auth |
| POST | profile | profile.store | App\Http\Controllers\ProfileController@store | sentry.auth |
| GET|HEAD | profile/{profile} | profile.show | App\Http\Controllers\ProfileController@show | sentry.auth |
| GET|HEAD | profile/{profile}/edit | profile.edit | App\Http\Controllers\ProfileController@edit | sentry.auth |
| PUT | profile/{profile} | profile.update | App\Http\Controllers\ProfileController@update | sentry.auth |
| PATCH | profile/{profile} | | App\Http\Controllers\ProfileController@update | sentry.auth |
| DELETE | profile/{profile} | profile.destroy | App\Http\Controllers\ProfileController@destroy | sentry.auth |
最初のプロファイル ルートは、ベンダー パッケージ ファイル内にある Sentinel Controller によって処理されます。
センチネル構成ファイルでは、ルーティングを完全にオフにすることしかできないため、選択したコントローラーをオーバーライドする方法はありますか、それとも SOL ですか?