Closed makhroja closed 1 year ago
i got such an error, i have followed the documentation. is there any solution
Laravel 6.2 GridView V2
Route : Route::get('/data', function () { $dataProvider = new EloquentDataProvider(User::query()); return view('admin/data', ['dataProvider' => $dataProvider]); });
Route::get('/data', function () { $dataProvider = new EloquentDataProvider(User::query()); return view('admin/data', ['dataProvider' => $dataProvider]); });
in view same with Documentation
Update
Solve after comment this line
'columnOptions' => [ // you may specify options common for all columns in your grid 'class' => 'attribute', // 'formatters' => 'text', //comment this line ],
i got such an error, i have followed the documentation. is there any solution
Laravel 6.2 GridView V2
Route :
Route::get('/data', function () { $dataProvider = new EloquentDataProvider(User::query()); return view('admin/data', ['dataProvider' => $dataProvider]); });
in view same with Documentation