Posts by Fernando I. Kobayashi • 1 point
1 post
-
0
votes1
answer262
viewsQ: Field validation in Lumen 5.5
In Lumen version 5.2 the following validation in the Controller is working: $this->validate($request, [ 'nome' => 'required', 'email' => 'required|email', 'cpf' => 'required', ]); Iofc…