FilamentF
Filament14mo ago
ingeday

open a modal from a navigationitem

Hi.

I would like to add a link in left navigation to open a modal and I put the link with this code in the file
AdminPanelProvider.php


public function panel(Panel $panel): Panel
    {
        return $panel
          ....
                ->navigationItems([
                NavigationItem::make('Abrir')
                    ->icon('heroicon-o-presentation-chart-line')
                    ->group('Simuladores')
                    ->sort(3)
                    ->url('#'),
                
            ])


The previous code shows the link (image attached), but I want to add something like this inside the link:
 x-on:click="" 
to open a modal with
 $dispatch("open-modal", { id: "credit-simulator" }) 
assuming I have a modal with that ID.

I have not found how to add that inside an Item of Navigation Panel.

Thanks for reading and helping.

Eday Gonzalez
Screenshot_2024-11-06_at_6.39.35_PM.png
Was this page helpful?