Files
ak 263b98b218 Initial baseline: LaraBlog core with plugin commerce surface.
Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
2026-08-12 01:15:38 +08:00

21 lines
780 B
PHP

<x-filament-panels::page>
<x-filament::section
:heading="$pluginTitle"
:description="$pluginName"
icon="heroicon-o-puzzle-piece"
>
<x-slot name="afterHeader">
@if ($enabled)
<x-filament::badge color="success">{{ __('admin.pages.enabled') }}</x-filament::badge>
@else
<x-filament::badge color="gray">{{ __('admin.pages.disabled') }}</x-filament::badge>
@endif
</x-slot>
<div class="space-y-3 text-sm leading-6 text-gray-600 dark:text-gray-300">
<p>{{ $pluginDescription }}</p>
<p class="text-gray-500 dark:text-gray-400">{{ __('admin.pages.skeleton_note') }}</p>
</div>
</x-filament::section>
</x-filament-panels::page>