- Creating Columns
- Relationships
- Available Methods
- Other Column Types
- Column Selection
- Secondary Header
- Footer
- Reusable Columns
- Anonymous Columns
- Introduction
- Date Filters
- DateRange Filters
- DateTime Filters
- Multi-Select Dropdown Filters
- Multi-Select Filters
- NumberRange Filters
- Number Filters
- Select Filters
- Text Filters
- Refreshing
- Loading Placeholder
- Multiple Tables Same Page
- Adding Custom Markup
- Debugging
- Saving Table State
- Lifecycle Hooks
Getting Started
Usage
DataTable
Columns
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
Date Filters
Date Filters
Date filters are HTML date elements.
1use Rappasoft\LaravelLivewireTables\Views\Filters\DateFilter;2 3public function filters(): array4{5 return [6 DateFilter::make('Verified From'),7 ];8}
Date filters have configs to set min and max, to set the format for the Filter Pills, and to set a placeholder value
1public function filters(): array 2{ 3 return [ 4 DateFilter::make('Verified From') 5 ->config([ 6 'min' => '2020-01-01', // Earliest Acceptable Date 7 'max' => '2021-12-31', // Latest Acceptable Date 8 'pillFormat' => 'd M Y', // Format for use in Filter Pills 9 'placeholder' => 'Enter Date', // A placeholder value10 ])11 ];12}
Date filters also support the setFilterDefaultValue() method, which must be a valid date in the "Y-m-d" format. This will apply as a default until removed.
1public function filters(): array 2{ 3 return [ 4 DateFilter::make('Verified From') 5 ->config([ 6 'min' => '2020-01-01', 7 'max' => '2023-12-31', 8 'pillFormat' => 'd M Y', 9 ])->setFilterDefaultValue('2023-08-01')10 ];11}