Ably broadcasting is not showing up

I have code like this to listen when job being success or failed to send reset password email. I've configure the filament.php like this
'broadcasting' => [
'echo' => [
'broadcaster' => 'ably',
'key' => env('ABLY_KEY'),
'authEndpoint' => '/broadcasting/auth',
'disableStats' => true,
'encrypted' => true,
'forceTLS' => true,
}
'broadcasting' => [
'echo' => [
'broadcaster' => 'ably',
'key' => env('ABLY_KEY'),
'authEndpoint' => '/broadcasting/auth',
'disableStats' => true,
'encrypted' => true,
'forceTLS' => true,
}
But still it doesn't work? even though in terminal the job done.
2025-01-30 09:31:38 Filament\Notifications\Auth\ResetPassword ...... RUNNING
2025-01-30 09:31:39 Filament\Notifications\BroadcastNotification ... RUNNING
2025-01-30 09:31:39 Filament\Notifications\BroadcastNotification 53.39ms DONE
2025-01-30 09:31:39 Illuminate\Notifications\Events\BroadcastNotificationCreated RUNNING
2025-01-30 09:31:40 Illuminate\Notifications\Events\BroadcastNotificationCreated 793.89ms DONE
2025-01-30 09:31:38 Filament\Notifications\Auth\ResetPassword ...... RUNNING
2025-01-30 09:31:39 Filament\Notifications\BroadcastNotification ... RUNNING
2025-01-30 09:31:39 Filament\Notifications\BroadcastNotification 53.39ms DONE
2025-01-30 09:31:39 Illuminate\Notifications\Events\BroadcastNotificationCreated RUNNING
2025-01-30 09:31:40 Illuminate\Notifications\Events\BroadcastNotificationCreated 793.89ms DONE
please help about this...
No description
1 Reply
kiuyha
kiuyhaOP4w ago
Can anyone help? Actually I just wonder that filament doesn't support ably for broadcaster. But I still facing problem that the filament need to be login to be received the notifications

Did you find this page helpful?