123456789101112131415161718 |
- <x-filament-panels::page>
- {{-- ✅ 確保不直接輸出陣列 --}}
- <form wire:submit="save">
- {{ $this->form }}
-
- <div class="mt-6">
- <x-filament::button
- type="submit"
- color="primary"
- wire:loading.attr="disabled"
- >
- <span wire:loading.remove>儲存設定</span>
- <span wire:loading>儲存中...</span>
- </x-filament::button>
- </div>
- </form>
- </x-filament-panels::page>
|