We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91149a5 commit 3220bb7Copy full SHA for 3220bb7
src/Traits/Filters/Styling/Helpers/FilterPillsStylingHelpers.php
@@ -0,0 +1,26 @@
1
+<?php
2
+
3
+namespace Rappasoft\LaravelLivewireTables\Traits\Filters\Styling\Helpers;
4
5
+use Livewire\Attributes\Computed;
6
7
+trait FilterPillsStylingHelpers
8
+{
9
+ #[Computed]
10
+ public function getFilterPillsItemAttributes(): array
11
+ {
12
+ return $this->filterPillsItemAttributes;
13
+ }
14
15
16
+ public function getFilterPillsResetFilterButtonAttributes(): array
17
18
+ return $this->filterPillsResetFilterButtonAttributes;
19
20
21
22
+ public function getFilterPillsResetAllButtonAttributes(): array
23
24
+ return $this->filterPillsResetAllButtonAttributes;
25
26
+}
0 commit comments