用DB来获取。你可以在控制器中
$rs = DB::select ( "select * from table_name limit 10" );
传递到视图:
$data['name']='laravel';return View::make('hi',$data);