Files
hyperf_service/app/Request/Admin/categoryRequest.php
LAPTOP-7SGDREK0\shiweijun 09d9bfaf7e fix:category
2025-01-09 16:43:11 +08:00

35 lines
662 B
PHP

<?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'],
];
}