Files
git-course/resources/views/category/index.blade.php
2026-05-12 10:41:18 +08:00

127 lines
8.7 KiB
PHP

<x-app-layout>
<x-slot name="header">
<div class="flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
<div>
<p class="text-sm font-medium uppercase tracking-wider text-indigo-600">{{ __('Content Library') }}</p>
<h2 class="text-2xl font-semibold leading-tight text-gray-900">
{{ __('Categories') }}
</h2>
</div>
<a href="{{ route('category.create') }}" class="inline-flex items-center justify-center rounded-lg bg-indigo-600 px-4 py-2 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-500 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2">
{{ __('New Category') }}
</a>
</div>
</x-slot>
<div class="py-10">
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
@if (session('status'))
<div class="mb-6 rounded-lg border border-emerald-200 bg-emerald-50 px-4 py-3 text-sm font-medium text-emerald-800">
@if (session('status') === 'category-created')
{{ __('Category created successfully.') }}
@elseif (session('status') === 'category-updated')
{{ __('Category updated successfully.') }}
@elseif (session('status') === 'category-deleted')
{{ __('Category deleted successfully.') }}
@endif
</div>
@endif
<div class="grid gap-6 lg:grid-cols-[1fr_18rem]">
<section class="overflow-hidden rounded-xl border border-gray-200 bg-white shadow-sm">
<div class="border-b border-gray-100 bg-gradient-to-r from-indigo-50 via-sky-50 to-emerald-50 px-6 py-5">
<div class="flex flex-col gap-2 sm:flex-row sm:items-end sm:justify-between">
<div>
<h3 class="text-lg font-semibold text-gray-900">{{ __('Manage Categories') }}</h3>
<p class="mt-1 text-sm text-gray-600">{{ __('Organize records with clear names, slugs, and color labels.') }}</p>
</div>
<span class="inline-flex w-fit items-center rounded-full bg-white px-3 py-1 text-sm font-medium text-gray-700 shadow-sm ring-1 ring-gray-200">
{{ trans_choice(':count category|:count categories', $categories->total(), ['count' => $categories->total()]) }}
</span>
</div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-white">
<tr>
<th scope="col" class="px-6 py-4 text-left text-xs font-semibold uppercase tracking-wider text-gray-500">{{ __('Category') }}</th>
<th scope="col" class="px-6 py-4 text-left text-xs font-semibold uppercase tracking-wider text-gray-500">{{ __('Slug') }}</th>
<th scope="col" class="px-6 py-4 text-left text-xs font-semibold uppercase tracking-wider text-gray-500">{{ __('Created') }}</th>
<th scope="col" class="px-6 py-4 text-right text-xs font-semibold uppercase tracking-wider text-gray-500">{{ __('Actions') }}</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-100 bg-white">
@forelse ($categories as $category)
<tr class="transition hover:bg-gray-50">
<td class="px-6 py-4">
<div class="flex items-center gap-3">
<span class="h-11 w-11 rounded-xl shadow-sm ring-1 ring-black/5" style="background-color: {{ $category->color }}"></span>
<div>
<p class="font-semibold text-gray-900">{{ $category->name }}</p>
<p class="mt-1 max-w-md truncate text-sm text-gray-500">
{{ $category->description ?: __('No description added.') }}
</p>
</div>
</div>
</td>
<td class="px-6 py-4 text-sm text-gray-600">
<span class="rounded-full bg-gray-100 px-3 py-1 font-mono text-xs text-gray-700">{{ $category->slug }}</span>
</td>
<td class="px-6 py-4 text-sm text-gray-600">{{ $category->created_at?->format('Y-m-d H:i') }}</td>
<td class="px-6 py-4 text-right text-sm">
<div class="flex justify-end gap-2">
<a href="{{ route('category.edit', $category) }}" class="rounded-lg border border-indigo-200 px-3 py-2 font-medium text-indigo-700 transition hover:bg-indigo-50">
{{ __('Edit') }}
</a>
<form method="POST" action="{{ route('category.destroy', $category) }}" onsubmit="return confirm('{{ __('Delete this category?') }}')">
@csrf
@method('DELETE')
<button type="submit" class="rounded-lg border border-rose-200 px-3 py-2 font-medium text-rose-700 transition hover:bg-rose-50">
{{ __('Delete') }}
</button>
</form>
</div>
</td>
</tr>
@empty
<tr>
<td colspan="4" class="px-6 py-12 text-center">
<div class="mx-auto max-w-sm">
<div class="mx-auto h-12 w-12 rounded-2xl bg-indigo-100"></div>
<h3 class="mt-4 text-base font-semibold text-gray-900">{{ __('No categories yet') }}</h3>
<p class="mt-1 text-sm text-gray-500">{{ __('Create your first category to start organizing the system.') }}</p>
<a href="{{ route('category.create') }}" class="mt-5 inline-flex items-center justify-center rounded-lg bg-indigo-600 px-4 py-2 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-500">
{{ __('Create Category') }}
</a>
</div>
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
@if ($categories->hasPages())
<div class="border-t border-gray-100 px-6 py-4">
{{ $categories->links() }}
</div>
@endif
</section>
<aside class="rounded-xl border border-gray-200 bg-white p-6 shadow-sm">
<p class="text-sm font-medium uppercase tracking-wider text-gray-500">{{ __('Palette') }}</p>
<div class="mt-4 grid grid-cols-4 gap-3">
@foreach ($categories->take(8) as $category)
<span class="h-12 rounded-xl shadow-sm ring-1 ring-black/5" style="background-color: {{ $category->color }}" title="{{ $category->name }}"></span>
@endforeach
</div>
<p class="mt-5 text-sm leading-6 text-gray-600">{{ __('Use color to make category scanning faster while keeping names and slugs predictable.') }}</p>
</aside>
</div>
</div>
</div>
</x-app-layout>