我正试图从表'Company'的数据库中获取数据,并将其作为json格式输出,我必须将其显示在数据表中。
控制器
{
test: /\.sass$/,
use: [ 'style-loader', 'css-loader', 'sass-loader' ],
include: path.join(__dirname, path + 'folder-style/'),
exclude: /flexboxgrid/
},
路线
public function ex(Request $request){
$table = \DB::table('company')->select('name','type','address','city','email','description')->get();
//return view('mydata')->with('company',$table);
return response($table);
}
刀片页面
Route::get('display','Test@ex');
输出如下图所示,但我想将其显示在数据表中