Is it possible to add "Previous" and "Next" buttons on Form ?
Hello, I want buttons to go to previous record or next record when I am editing one ?
Is it possible ?
Solution:Jump to solution
This will do what you're asking
```php
class EditTask extends EditRecord
{...
5 Replies
I also have this need. Anyone know how 'Previous' and 'Next' buttons on a form to navigate through a table's result list of records can be achieved?
Are you in v2 or v3?
You can check with
php artisan about
Solution
This will do what you're asking
In addition, it also has checks in case you reach the first/last record, then it will be disabled
Thank you, this is great! I still need to do some work retaining search and sort options from the original table list, but this definitely has set me on the right path. Sorry I seem unable to mark this as the solution, but definitely works for me. (Filament v3 by the way)