65 lines
2.7 KiB
PHP
65 lines
2.7 KiB
PHP
<x-filament-panels::page>
|
|
<x-filament::section>
|
|
<x-slot name="heading">
|
|
Plugins
|
|
</x-slot>
|
|
|
|
<x-filament-tables::table>
|
|
<thead>
|
|
<tr>
|
|
<x-filament-tables::header-cell>
|
|
Name
|
|
</x-filament-tables::header-cell>
|
|
<x-filament-tables::header-cell>
|
|
Identifier
|
|
</x-filament-tables::header-cell>
|
|
<x-filament-tables::header-cell>
|
|
Enabled
|
|
</x-filament-tables::header-cell>
|
|
<x-filament-tables::header-cell>
|
|
Configured
|
|
</x-filament-tables::header-cell>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($plugins as $plugin)
|
|
<x-filament-tables::row>
|
|
<x-filament-tables::cell>
|
|
{{ $plugin->name }}
|
|
</x-filament-tables::cell>
|
|
<x-filament-tables::cell>
|
|
{{ $plugin->identifier }}
|
|
</x-filament-tables::cell>
|
|
<x-filament-tables::cell>
|
|
@if ($plugin->enabled)
|
|
<x-filament::icon
|
|
icon="heroicon-o-check-circle"
|
|
class="text-success-500 w-5 h-5"
|
|
/>
|
|
@else
|
|
<x-filament::icon
|
|
icon="heroicon-o-x-circle"
|
|
class="text-danger-500 w-5 h-5"
|
|
/>
|
|
@endif
|
|
</x-filament-tables::cell>
|
|
<x-filament-tables::cell>
|
|
@if ($plugin->configured)
|
|
<x-filament::icon
|
|
icon="heroicon-o-check-circle"
|
|
class="text-success-500 w-5 h-5"
|
|
/>
|
|
@else
|
|
<x-filament::icon
|
|
icon="heroicon-o-x-circle"
|
|
class="text-danger-500 w-5 h-5"
|
|
/>
|
|
@endif
|
|
</x-filament-tables::cell>
|
|
</x-filament-tables::row>
|
|
@endforeach
|
|
</tbody>
|
|
</x-filament-tables::table>
|
|
</x-filament::section>
|
|
</x-filament-panels::page>
|