mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-21 14:41:08 +02:00
18 lines
450 B
PHP
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>
|