We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f00cb26 commit fc5a97eCopy full SHA for fc5a97e
packages/notifications/src/Http/Livewire/Tables/NotificationTable.php
@@ -65,8 +65,8 @@ protected function filters(): array
65
BooleanFilter::make(__('Enabled'), 'enabled'),
66
SelectFilter::make(__('Type'), 'notification')
67
->options(
68
- collect(NotificationRegistry::notifications()) // @phpstan-ignore-line
69
- ->mapWithKeys(fn (string $notification): array => [$notification => $notification::$name])
+ collect(NotificationRegistry::notifications())
+ ->mapWithKeys(fn (string $notification): array => [$notification => $notification::$name]) // @phpstan-ignore-line
70
->toArray()
71
),
72
];
0 commit comments