feat: refactor featured variants to group items, including new controller and resource implementations

This commit is contained in:
2026-07-17 14:42:53 -03:00
parent cb0fb2899c
commit b8eb71896c
6 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Domains\Catalog\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateGroupItemRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'order' => ['sometimes', 'integer'],
];
}
}