- Creating Columns
- Relationships
- Available Methods
- Other Column Types
- Column Selection
- Secondary Header
- Footer
- Reusable Columns
- Anonymous Columns
- Styling
- Standard Column
- Array Columns (beta)
- Avg Columns (beta)
- Boolean Columns
- Button Group Columns
- Color Columns
- Component Columns
- Count Columns (beta)
- Date Columns
- Icon Columns (beta)
- Image Columns
- Link Columns
- Livewire Component (beta)
- Sum Columns (beta)
- View Component Columns
- Wire Link Column (beta)
- Introduction
- Boolean Filters (beta)
- Date Filters
- DateRange Filters
- DateTime Filters
- Multi-Select Dropdown Filters
- Multi-Select Filters
- NumberRange Filters
- Number Filters
- Select Filters
- Text Filters
- Livewire Custom Filter (Beta)
- Refreshing
- Loading Placeholder
- Multiple Tables Same Page
- Actions (beta)
- Adding Custom Markup
- Debugging
- Saving Table State
- Lifecycle Hooks
- Hiding The Table (beta)
- One Of Many Example
- Tools
Getting Started
Usage
DataTable
Columns
Column Types
Rows
Sorting
Pagination
Search
Bulk Actions
Filters
Filter Types
Reordering
Secondary Header
Footer
Examples
Misc.
Sponsored
Advanced Usage
Examples
🎉 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 on the left/at the top. Check your current version with the following command:
composer show rappasoft/laravel-livewire-tables
Query String
The query string is enabled by default, but if you ever needed to toggle it you can use the following methods:
Global
setQueryStringStatus
Enable/disable the query string.
1public function configure(): void2{3 $this->setQueryStringStatus(true);4 $this->setQueryStringStatus(false);5}
setQueryStringEnabled
Enable the query string.
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatus(true)4 $this->setQueryStringEnabled();5}
setQueryStringDisabled
Disable the query string.
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatus(false)4 $this->setQueryStringDisabled();5}
setQueryStringAlias
Change the Alias in the URL, otherwise defaults to "$tablename"
1public function configure(): void2{3 $this->setQueryStringAlias('table1');4}
Filters
The filter query string is enabled by default, but if you ever needed to toggle it you can use the following methods:
setQueryStringStatusForFilter
Enable/disable the query string for the filters
1public function configure(): void2{3 $this->setQueryStringStatusForFilter(true);4 $this->setQueryStringStatusForFilter(false);5}
setQueryStringForFilterEnabled
Enable the query string for the filters
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForFilter(true)4 $this->setQueryStringForFilterEnabled();5}
setQueryStringForFilterDisabled
Disable the query string for the filters
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForFilter(false)4 $this->setQueryStringForFilterDisabled();5}
setQueryStringAliasForFilter
Change the Alias in the URL for the filter, otherwise defaults to "$tablename-filters"
1public function configure(): void2{3 $this->setQueryStringAliasForFilter('filtervalues');4}
Search
The search query string is enabled by default, but if you ever needed to toggle it you can use the following methods:
setQueryStringStatusForSearch
Enable/disable the query string for search
1public function configure(): void2{3 $this->setQueryStringStatusForSearch(true);4 $this->setQueryStringStatusForSearch(false);5}
setQueryStringForSearchEnabled
Enable the query string for search
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForSearch(true)4 $this->setQueryStringForSearchEnabled();5}
setQueryStringForSearchDisabled
Disable the query string for search
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForSearch(false)4 $this->setQueryStringForSearchDisabled();5}
setQueryStringAliasForSearch
Change the Alias in the URL for the search, otherwise defaults to "$tablename-search"
1public function configure(): void2{3 $this->setQueryStringAliasForSearch('search');4}
Sorts
The sorts query string is enabled by default, but if you ever needed to toggle it you can use the following methods:
setQueryStringStatusForSort
Enable/disable the query string for sort
1public function configure(): void2{3 $this->setQueryStringStatusForSort(true);4 $this->setQueryStringStatusForSort(false);5}
setQueryStringForSortEnabled
Enable the query string for sort
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForSort(true)4 $this->setQueryStringForSortEnabled();5}
setQueryStringForSortDisabled
Disable the query string for sort
1public function configure(): void2{3 // Shorthand for $this->setQueryStringStatusForSort(false)4 $this->setQueryStringForSortDisabled();5}
setQueryStringAliasForSort
Change the Alias in the URL for the sorts, otherwise defaults to "$tablename-sorts"
1public function configure(): void2{3 $this->setQueryStringAliasForSort('sorts');4}