wip: article AI polish, category SEO fields, cover generator, membership plan seeder
CI / PHPUnit (PHP 8.3) (push) Failing after 4s
CI / PHPUnit (PHP 8.2) (push) Failing after 1m9s
CI / Deploy (manual gate) (push) Skipped

This commit is contained in:
2026-09-07 18:48:37 +00:00
parent 263b98b218
commit 3cec4c5e18
121 changed files with 4701 additions and 313 deletions
+6 -1
View File
@@ -73,7 +73,12 @@
<h3>{{ __('frontend.sidebar.categories') }}</h3>
<ul>
@forelse(($categories ?? []) as $category)
<li><a href="{{ url('/category-'.$category->id.'.shtml') }}">{{ $category->name }}</a></li>
<li>
<a href="{{ $category->publicUrl() }}">{{ $category->name }}</a>
@if((int) $category->articles_count > 0)
<span class="meta">({{ $category->articles_count }})</span>
@endif
</li>
@empty
<li class="note">{{ __('frontend.sidebar.empty_category') }}</li>
@endforelse