Skip View Step

Hi all

I have the below action code on my filament page. It will open a modal which in turn opens a livewire component with a filament table on it.

    public function postTaxAdjustmentsAction(): Action
    {
        return Action::make('postTaxAdjustmentsAction')
            ...
            ->modalContent(view('livewire.budget.adjustments'));
    }


The above opens
 <livewire:budget.list-post-tax-adjustements lazy="on_load" /> 
. Can I skip a step and simply call the livewire component from within the Action code ?
Was this page helpful?