Is it possible to show multiple modals on page

I have made a custom Dashboard page where i would like to display two or more action buttons.
What i have done is as this first code screenshot, where i have shown custom Dashboard class.
There are two methods, one to create Expense, and another to create report.
The view, is simple:
<x-filament-panels::page>
    {{ $this->createReport() }}
    {{ $this->createExpense() }}
</x-filament-panels::page>

However, only First one pops the modal. If i remove Slide from second one, still the same, only createReport shows the modal. If i remove createReport from tempalte, no modal shown.
Any ideas, why modal is not shown?
image.png
Solution
Not out of the box, I think this is coming to V4
Was this page helpful?