jeffigy
jeffigy

Reputation: 97

Validating arrays in laravel

Can anyone please help me , I don't understand this type of validation, I am new to laravel.


    'person.*.email' => 'email|unique:users',
    'person.*.first_name' => 'required_with:person.*.last_name',

Upvotes: 0

Views: 27

Answers (1)

Majid Ahmadi
Majid Ahmadi

Reputation: 127

First string say you must enter email and unique email for user model

Secend string refer to first name is required and must be alongside lastname

Upvotes: 1

Related Questions