fixed migrations, changed settings to global settings, changed image list to have a "delete all" button instead of "create", fixed printing, added imagick for printing.

This commit is contained in:
2025-08-26 10:39:18 +02:00
parent 44dd0f2867
commit 9b1f6a479f
69 changed files with 17232 additions and 1263 deletions

View File

@@ -0,0 +1,9 @@
<x-filament-panels::page>
<form wire:submit="save">
{{ $this->form }}
<x-filament-panels::form.actions
:actions="$this->getFormActions()"
/>
</form>
</x-filament-panels::page>

View File

@@ -22,37 +22,37 @@
</tr>
</thead>
<tbody>
@foreach ($this->getTableRecords() as $record)
@foreach ($plugins as $plugin)
<x-filament-tables::row>
<x-filament-tables::cell>
{{ $record->name }}
{{ $plugin->name }}
</x-filament-tables::cell>
<x-filament-tables::cell>
{{ $record->identifier }}
{{ $plugin->identifier }}
</x-filament-tables::cell>
<x-filament-tables::cell>
@if ($record->enabled)
@if ($plugin->enabled)
<x-filament::icon
icon="heroicon-o-check-circle"
class="text-success-500"
class="text-success-500 w-5 h-5"
/>
@else
<x-filament::icon
icon="heroicon-o-x-circle"
class="text-danger-500"
class="text-danger-500 w-5 h-5"
/>
@endif
</x-filament-tables::cell>
<x-filament-tables::cell>
@if ($record->configured)
@if ($plugin->configured)
<x-filament::icon
icon="heroicon-o-check-circle"
class="text-success-500"
class="text-success-500 w-5 h-5"
/>
@else
<x-filament::icon
icon="heroicon-o-x-circle"
class="text-danger-500"
class="text-danger-500 w-5 h-5"
/>
@endif
</x-filament-tables::cell>