Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
试图为我的页面创建一个编辑功能,但我不断收到身份不明的变量:id
编辑刀片.php
{{ Form::model($provider, array('route' => array('provider.edit', $provider->id))) }}
Route::get('帐号/编辑')
$provider = Provider::find($id); return View::make('provider.edit')->with(compact('provider'));