Laravel validate at least one item in a form array

后端 未结 8 1078
借酒劲吻你
借酒劲吻你 2020-12-30 11:12

I have a form with a series of numbers in an array:




        
8条回答
  •  滥情空心
    2020-12-30 12:08

    $valid = Validator($request->all(), [
        'type' => 'required|string|in:city,region,country',
    ]);
    
    if ($valid->fails()) return response()->json($valid->errors(), 400);
    

提交回复
热议问题