44 lines
901 B
PHP
44 lines
901 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Request\Admin;
|
|
|
|
use Hyperf\Validation\Request\FormRequest;
|
|
|
|
class SectionRequest 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 [
|
|
'id' => 'required|integer',
|
|
'name' => 'required|string',
|
|
'city_id' => 'exists:system_city,id',
|
|
'pid' => 'exists:admin_section,id',
|
|
'status' => 'in:1,2',
|
|
];
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
protected array $scenes = [
|
|
'add' => ['name', 'city_id', 'status','pid'],
|
|
'edit' => ['name', 'city_id', 'status','pid','id'],
|
|
];
|
|
}
|