Cant display modal with custom view

What I want is a modal with 3 buttons.

I have a modal action in my header
Action::make('queryAction')
  ->color('info')
  ->label('Query Movies')
  ->modalContent(view('filament.resources.movie-resource.actions.actions-modal'))


<x-filament::modal>
    <x-filament::button color="primary" class="w-full">
        sadbasdasd
    </x-filament::button>

    <x-filament::button  color="info" class="w-full">
        asdjabsdjasd
    </x-filament::button>

    <x-filament::button  color="success" class="w-full">
        dabdajda
    </x-filament::button>
</x-filament::modal>


Yet when I click on the button, it shows the default view
image.png
Was this page helpful?