Laravel Livewire Tables Documentation

🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.

This is the documentation for v3. You can switch versions in the menu at the top. Check your current version with the following command:

composer show rappasoft/laravel-livewire-tables

Loaders

With the introduction of Livewire 3, there are several new methods available for use:

Loading Placeholder

1public function configure(): void
2{
3 $this->setLoadingPlaceholderBlade('');
4}

setLoadingPlaceholderStatus

1public function configure(): void
2{
3 $this->setLoadingPlaceholderStatus(true);
4}

setLoadingPlaceholderEnabled

1public function configure(): void
2{
3 $this->setLoadingPlaceholderEnabled();
4}

setLoadingPlaceholderDisabled

1public function configure(): void
2{
3 $this->setLoadingPlaceholderDisabled();
4}

setLoadingPlaceholderContent

1public function configure(): void
2{
3 $this->setLoadingPlaceholderContent('');
4}

setLoadingPlaceHolderAttributes

1public function configure(): void
2{
3 $this->setLoadingPlaceHolderAttributes([]);
4}

setLoadingPlaceHolderIconAttributes

1public function configure(): void
2{
3 $this->setLoadingPlacehosetLoadingPlaceHolderIconAttributeslderBlade([]);
4}

setLoadingPlaceHolderWrapperAttributes

1public function configure(): void
2{
3 $this->setLoadingPlaceHolderWrapperAttributes([]);
4}

setLoadingPlaceholderBlade

1public function configure(): void
2{
3 $this->setLoadingPlaceholderBlade('');
4}