fix:category

This commit is contained in:
LAPTOP-7SGDREK0\shiweijun
2025-01-09 16:42:10 +08:00
parent 051d19f79f
commit 09d9bfaf7e
5 changed files with 140 additions and 7 deletions

View File

@@ -0,0 +1,34 @@
<?php
declare(strict_types=1);
namespace App\Request\Admin;
use Hyperf\Validation\Request\FormRequest;
class categoryRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'name' => 'required|string',
'image_id' => 'required|integer',
];
}
protected array $scenes = [
'list_category' => [],
'add_category' => ['name', 'image_id'],
];
}