Skip to content

Commit 3220bb7

Browse files
authored
Fix namespace
1 parent 91149a5 commit 3220bb7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
#[Computed]
16+
public function getFilterPillsResetFilterButtonAttributes(): array
17+
{
18+
return $this->filterPillsResetFilterButtonAttributes;
19+
}
20+
21+
#[Computed]
22+
public function getFilterPillsResetAllButtonAttributes(): array
23+
{
24+
return $this->filterPillsResetAllButtonAttributes;
25+
}
26+
}

0 commit comments

Comments
 (0)