MedicOneSystems / livewire-datatables

Advanced datatables using Laravel, Livewire, Tailwind CSS and Alpine JS
https://livewire-datatables.com/
MIT License
1.2k stars 258 forks source link

Customise pagination dropdown options (to hide 'All' option) #347

Closed grafxflow closed 3 years ago

grafxflow commented 3 years ago

Is it possible to customise pagination dropdown options since I don't want the option of 'All'?

gzai commented 3 years ago

it's possible. If you already publish the config file and blade template assets.

php artisan vendor:publish --provider="Mediconesystems\LivewireDatatables\LivewireDatatablesServiceProvider"

open file resources/views/livewire/datatables/datatable.blade.php and comment in line 171

// <option value="99999999">{{__('All')}}</option>
grafxflow commented 3 years ago

Perfect :)

Thanks for your help!