yajra / laravel-datatables

jQuery DataTables API for Laravel
https://yajrabox.com/docs/laravel-datatables
MIT License
4.76k stars 857 forks source link

Argument '1' passed to render() is expected to be of type Yajra\DataTables\Services\view-string|null, string given #3158

Closed gokhankapucuoglu closed 3 months ago

gokhankapucuoglu commented 4 months ago

Argument '1' passed to render() is expected to be of type Yajra\DataTables\Services\view-string|null, string given

class StudentController extends Controller { public function index(StudentsDataTable $dataTable) { return $dataTable->render('admin.students.index'); } }

image image

Project works but warning the ide always. How can i fix it

yajra commented 4 months ago

I think this would be fixed if you install ide-helper or larastan.

gokhankapucuoglu commented 3 months ago

yeap. composer remove barryvdh/laravel-ide-helper after fix. Thanks.