Excel Exporter for Laravel Table on Livewire Component

I have a header action that exports to an excel file. I have make everything according to the docs on how to set up the exporter. My table is on a livewire component though. It shows me that the proccess has started as the notification but it does not show me the notification when it is ready. I don't want to have this notification in the admin panel but on the livewire component that i have in a view. I have added in the app.blade.php
@livewire('notifications')


In the Filament Table I have in the livewire component
->headerActions([
    ExportAction::make()
    ->exporter(Products::class)
    ->formats([
         ExportFormat::Xlsx,
    ])
])


Is there a way to achieve this?
Was this page helpful?