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 6a7591a commit 8f17ce1Copy full SHA for 8f17ce1
app/Concerns/HasTags.php
@@ -19,7 +19,7 @@ public function tags(): Collection
19
public function syncTags(array $tags)
20
{
21
try {
22
- $this->save();
+ $this->save();
23
} catch (\Exception $e) {
24
dd($e);
25
}
app/Livewire/NotificationIndicator.php
@@ -4,8 +4,8 @@
4
5
use Illuminate\Support\Facades\Auth;
6
use Illuminate\View\View;
7
+use Livewire\Attributes\On;
8
use Livewire\Component;
-use Livewire\Attributes\On;
9
10
final class NotificationIndicator extends Component
11
@@ -22,7 +22,7 @@ public function render(): View
]);
- #[On('NotificationMarkedAsRead')]
+ #[On('NotificationMarkedAsRead')]
26
public function setHasNotification(int $count): bool
27
28
return $count > 0;
0 commit comments