feat : section
This commit is contained in:
43
app/Request/Admin/SectionRequest.php
Normal file
43
app/Request/Admin/SectionRequest.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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'],
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user