pelican-panel-mirror/resources/views/livewire/custom-modal.blade.php
2025-01-16 17:01:41 -05:00

18 lines
450 B
PHP

<x-filament::modal id="{{ $getName() }}" :width="'xl'">
<div class="text-xl font-bold text-center">
{{ $getHeading() }}
</div>
<div class="text-lg text-center">
{{ $getDescription() }}
</div>
<div class="w-full flex justify-center mt-3">
@if ($actions = $getActions())
<x-filament::actions
:actions="$actions"
/>
@endif
</div>
</x-filament::modal>