fix:category
This commit is contained in:
34
app/Request/Admin/categoryRequest.php
Normal file
34
app/Request/Admin/categoryRequest.php
Normal 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'],
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user