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:
9
resources/views/filament/pages/global-settings.blade.php
Normal file
9
resources/views/filament/pages/global-settings.blade.php
Normal 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>
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user