yajra / laravel-datatables-editor

Laravel DataTables Editor Integration.
https://yajrabox.com/docs/laravel-datatables/editor-installation
MIT License
115 stars 14 forks source link

Select::tableoptions(..) #45

Closed matteocostantini closed 4 years ago

matteocostantini commented 4 years ago

Hi, can you tell me a full example of select:tableoptions with closure?

Thank you.

yajra commented 4 years ago

It's for additional query for the table. Something like:

Fields\Select::make('user_id')->tableOptions('users', 'name', 'id', function($query) {
    $query->where('active', true);
}),