Yajra Datatables Package for Laravel deosnt work properly with laravel 5.2
问题 I have installed yajra/laravel-datatables-oracle "~6.0" package for supporting server-side datatables in laravel 5.2 with MySql as database. i'm trying to display the datatable of users: //routes.php Route::group(['middleware' => ['web'], 'prefix' => 'user'], function () { Route::get('/index', 'UserController@index')->name('user.index'); }); and here is my controller: //UserController.php public function index() { return view('user.index'); } public function indexData() { $users = User: