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:
@@ -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