Laravel 4 如何使用laravel从数据库中获取参数值

Laravel 4 如何使用laravel从数据库中获取参数值,laravel-4,Laravel 4,Im尝试使用laravel从数据库中获取参数值,以更新值 ErrorException (E_UNKNOWN) 传递给Lightning\Html\FormBuilder::open的参数1必须是在中调用的数组、给定字符串类型 C:\xampp\htdocs\lara1\lara\vendor\laravel\framework\src\Illuminate\Support\Facades\Facade.php on line 211 and defined (View: C:\xampp\h

Im尝试使用laravel从数据库中获取参数值,以更新值

ErrorException (E_UNKNOWN)
传递给Lightning\Html\FormBuilder::open的参数1必须是在中调用的数组、给定字符串类型

C:\xampp\htdocs\lara1\lara\vendor\laravel\framework\src\Illuminate\Support\Facades\Facade.php on line 211 and defined (View: C:\xampp\htdocs\lara1\lara\app\views\newsandevents\edit.blade.php)

http://ErrorException
…\vendor\laravel\framework\src\Illuminate\Html\FormBuilder.php95 
这是我的路线代码


你的看法如何?您是否在表单open中传递字符串而不是数组?我想您没有在表单::open方法中给出任何参数。参数类型必须在数组中。
Route::get('/edit/{id}',array('uses'=>'NewsandeventsController@edit','as' => 'edit'));

 Controller.php
public function edit($id) 
      {     
      $newsevents=ForumNewsevent::find($id);
        return View::make('newsandevents.edit')
      ->with('newsevents',$newsevents);
}