actions = Arr::wrap($actions); $this->actionsPosition($position); return $this; } public function actionsPosition(?string $position = null): static { $this->actionsPosition = $position; return $this; } public function bulkActions(array $actions): static { $this->bulkActions = $actions; return $this; } public function columns(array $columns): static { $this->columns = $columns; return $this; } public function contentGrid(?array $grid): static { $this->contentGrid = $grid; return $this; } public function defaultSort(string $column, string $direction = 'asc'): static { $this->defaultSortColumn = $column; $this->defaultSortDirection = strtolower($direction); return $this; } public function filters(array $filters, ?string $layout = null): static { $this->filters = $filters; $this->filtersLayout($layout); return $this; } public function filtersLayout(?string $filtersLayout): static { $this->filtersLayout = $filtersLayout; return $this; } public function recordCheckboxPosition(?string $recordCheckboxPosition): static { $this->recordCheckboxPosition = $recordCheckboxPosition; return $this; } public function headerActions(array | ActionGroup $actions): static { $this->headerActions = Arr::wrap($actions); return $this; } public function prependActions(array $actions): static { $this->actions = array_merge($actions, $this->actions); return $this; } public function prependBulkActions(array $actions): static { $this->bulkActions = array_merge($actions, $this->bulkActions); return $this; } public function prependHeaderActions(array $actions): static { $this->headerActions = array_merge($actions, $this->headerActions); return $this; } public function appendActions(array $actions): static { $this->actions = array_merge($this->actions, $actions); return $this; } public function appendBulkActions(array $actions): static { $this->bulkActions = array_merge($this->bulkActions, $actions); return $this; } public function appendHeaderActions(array $actions): static { $this->headerActions = array_merge($this->headerActions, $actions); return $this; } public function poll(?string $interval = '10s'): static { $this->pollingInterval = $interval; return $this; } public function deferLoading(bool $condition = true): static { $this->isLoadingDeferred = $condition; return $this; } /** * @deprecated Use `appendActions()` instead. */ public function pushActions(array $actions): static { $this->appendActions($actions); return $this; } /** * @deprecated Use `appendBulkActions()` instead. */ public function pushBulkActions(array $actions): static { $this->appendBulkActions($actions); return $this; } /** * @deprecated Use `appendHeaderActions()` instead. */ public function pushHeaderActions(array $actions): static { $this->appendHeaderActions($actions); return $this; } public function reorderable(?string $column = 'sort'): static { $this->reorderColumn = $column; return $this; } public function getActions(): array { return $this->actions; } public function getActionsPosition(): ?string { return $this->actionsPosition; } public function getBulkActions(): array { return $this->bulkActions; } public function getColumns(): array { return $this->columns; } public function getContentGrid(): ?array { return $this->contentGrid; } public function getDefaultSortColumn(): ?string { return $this->defaultSortColumn; } public function getDefaultSortDirection(): ?string { return $this->defaultSortDirection; } public function getFilters(): array { return $this->filters; } public function getFiltersLayout(): ?string { return $this->filtersLayout; } public function getRecordCheckboxPosition(): ?string { return $this->recordCheckboxPosition; } public function getHeaderActions(): array { return $this->headerActions; } public function getReorderColumn(): ?string { return $this->reorderColumn; } public function getPollingInterval(): ?string { return $this->pollingInterval; } public function isLoadingDeferred(): bool { return $this->isLoadingDeferred; } }