我有这样的路线,这意味着当我使用id=128
登录帐户时,我的网址将为http://127.0.0.1:1000/sv/128/account
。
我想问一下,如何创建另一个URL? http://127.0.0.1:1000/sv/abczysslw/asswaeq
,就像这样。编码效果更好。因为我不希望他们看到我的id
。
Route::group(['prefix'=>'sv','middleware'=>'sinhvienLogin'],function(){
Route::get('/student/home','StudentController@index')->name('student.dashboard');
Route::get('/{id}/account','FrontendController@account')->name('sv.account');
});