'required|string|max:50', 'user_id' => 'required|integer|exists:user,id', 'worker_id' => 'required|integer|exists:runner_workers,id', 'amount' => 'required|numeric|min:0', 'fee' => 'nullable|numeric|min:0', 'channel' => 'nullable|string|max:50', 'account_info' => 'nullable|json', 'status' => 'nullable|integer|in:0,1,2', 'remark' => 'nullable|string|max:255', 'processed_at' => 'nullable|date', ]; } public function messages(): array { return [ 'withdraw_no.required' => '提现单号不能为空', 'user_id.required' => '用户不能为空', 'worker_id.required' => '跑腿员不能为空', 'amount.required' => '提现金额不能为空', ]; } }