I have a problem with modal in Filament PHP that installed for a Laravel project.
In whole admin panel modals dialog is not showing but only modal transparent background shows up.
To clarification major customization that I implemented on filament admin panels are:
- filapanel/classic-theme installed.
- althinect/filament-spatie-roles-permissions Installed.
- And I change panel admin model from \App\Models\User to \App\Models\Admin.
And I checked rendered HTML code from browser Inspection Element Section:
{
isShown = isOpen
$watch('isOpen', () => (isShown = isOpen))
})
"
x-on:keydown.window.escape="$dispatch('close-modal', { id: 'sVttJcBXUY2PvsaJXQmH-form-component-action' })"
x-show="isShown" x-transition:enter="duration-300" x-transition:leave="duration-300"
x-transition:enter-start="scale-95" x-transition:enter-end="scale-100" x-transition:leave-start="scale-95"
x-transition:leave-end="scale-100" class="" data-has-alpine-state="true" style="display: none;">
I have no idea what is problem. I need to resolve these problems.
If need more information please tell me to share that.