PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Helpers
/
Editing: LoadingPlaceholderHelpers.php
<?php namespace Rappasoft\LaravelLivewireTables\Traits\Helpers; trait LoadingPlaceholderHelpers { public function hasDisplayLoadingPlaceholder(): bool { return $this->getDisplayLoadingPlaceholder(); } public function getDisplayLoadingPlaceholder(): bool { return $this->displayLoadingPlaceholder; } public function getLoadingPlaceholderContent(): string { return $this->loadingPlaceholderContent ?? __('livewire-tables:loading'); } public function getLoadingPlaceholderAttributes(): array { return count($this->loadingPlaceHolderAttributes) ? $this->loadingPlaceHolderAttributes : ['default' => true]; } public function getLoadingPlaceHolderIconAttributes(): array { return count($this->loadingPlaceHolderIconAttributes) ? $this->loadingPlaceHolderIconAttributes : ['default' => true]; } public function getLoadingPlaceHolderWrapperAttributes(): array { return count($this->loadingPlaceHolderWrapperAttributes) ? $this->loadingPlaceHolderWrapperAttributes : ['default' => true]; } public function hasLoadingPlaceholderBlade(): bool { return ! is_null($this->getLoadingPlaceHolderBlade()); } public function getLoadingPlaceHolderBlade(): ?string { return $this->loadingPlaceholderBlade; } }
SAVE
CANCEL