我與這些輸入的一種形式:name
,height
,weight
和mobilenumbers[]
(這是一個數組) 例如:mobilenumbers
如何驗證表單數據是數組之一?
[12345678,88665544,45456574,33669988]
用戶可以動態地添加 「mobilenumbers」 的多個字段。我需要驗證「mobilenumbers」的數組。我怎麼做? Laravel文檔相當混亂。是否需要在AppServiceProvider中編寫自定義驗證,還是我只需驗證數組中的每個數據? 在laravel 5.4文檔,它說是這樣的:
$validator = Validator::make($request->all(), [
'person.*.email' => 'email|unique:users',
'person.*.first_name' => 'required_with:person.*.last_name',
]);
但對我來說我的數組是簡單地mobilenumbers [],我該怎麼做呢?
感謝很多提前