Relax property type check

This commit is contained in:
Marcus Moore 2023-09-07 13:28:32 -07:00
parent a7a70f6981
commit 4caa501996

View file

@ -32,7 +32,7 @@ class SaveUserRequest extends FormRequest
public function rules()
{
$rules = [
'department_id' => 'nullable|integer|exists:departments,id',
'department_id' => 'nullable|exists:departments,id',
'manager_id' => 'nullable|exists:users,id',
];