Whenever I am using this code I keep getting the following error: "Trying to get property of non-object"
Controller:
public function createBooking()
{
$products = DB::table('products')->orderBy('id', 'asc')->lists('id', 'name');
return View::make('users.addbooking', array('products' => $products));
}
Blade View:
{{ Form::select('products', $products , Input::all('products')) }}