Found.
I forgot to add a view, for instance it works with :
return redirect()->back();
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have a FilaStart new app working.
I installed Filament Notifications ( https://filamentphp.com/docs/3.x/notifications/installation )
I wrote a simple controller to test.
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\DB;
use Filament\Notifications\Notification;
use Livewire\Component;
use Livewire\Livewire;
class TestController extends Controller
{
public function do()
{
echo "TestController / do";
Notification::make()
->title('TestController / do / Notification Test')
->success()
->send();
}
}
When I run this controller, I see the echo output but not the notification.
I'm new to Filament/FilaStart/Livewire and I just read somewhere that I should put "@livewire('filament.notifications')" in the blade layout.
But I have no idea how this layout is managed / created by Filament (I had no success to understand using Debugbar - see my previous post) ? And if it should be the solution?
Found.
I forgot to add a view, for instance it works with :
return redirect()->back();
Please or to participate in this conversation.