ProcessRecordsRequest.php
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace App\Http\Requests\Aside\Project;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Str;
/**
* Class ProcessRecordsRequest
* @package App\Http\Requests\Aside\product
* @author zbj
* @date 2023/6/25
*/
class ProcessRecordsRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'project_id' => 'required',
'record' => ['required', 'array', function ($attribute, $value, $fail) {
foreach ($value as $v) {
if (empty($v['date'])) {
$fail('请选择记录日期');
}
if (empty($v['content'])) {
$fail('请输入记录内容');
}
}
}],
];
}
public function messages()
{
return [
'project_id.required'=>'项目ID不能为空',
];
}
}