我一直在努力完成这项工作,但不知何故它不起作用。
Route::get('account/edit/{id}', array('before' => 'auth', function($id)
{
$id = Auth::user()->id;
$provider = Provider::find($id);
return View::make('provider.accountEdit')->with(compact('provider'));
}));
我正在尝试将用户 ID 放在 url 位上,例如 user/account/1