© 2026 Hedgehog Software, LLC
public function nextPageAction(): Action { return Action::make('nextPage') ->button() ->disabled(fn () => $this->totalPages <= 1 || $this->page === $this->totalPages) // ->hidden($this->totalPages <= 1 || $this->page === $this->totalPages) ->action(function () { dd($this->page); $this->nextPage(); }); }
totalPages
protected ?int $totalPages = null;
public ?int $totalPages = null;