feat: Implement OnTicketFeaturedGroup management; add controller, service, resource, request, routes, and tests for featured groups

This commit is contained in:
2026-08-04 13:17:00 -03:00
parent 84e45bb964
commit 3a039a6055
7 changed files with 489 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Domains\Catalog\Requests\AdminApp;
use Illuminate\Foundation\Http\FormRequest;
class UpsertOnTicketFeaturedGroupRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
/** @return array<string, mixed> */
public function rules(): array
{
return [
'category_name' => ['required', 'string', 'max:255'],
'is_featured' => ['required', 'boolean'],
];
}
}