Posts by Middle Verona • 21 points
2 posts
-
2
votes0
answers62
viewsQ: How to customize my Validator’s return key in the Laravel?
Currently my Validator returns as key the field that did not pass the validation, I wonder if it has to change to a generic name, as "errors" so I can browse the frontend. Follow the Validator:…
laravelasked Middle Verona 21 -
0
votes0
answers1289
viewsQ: Too few Arguments to Function
I created a route to register users in Aravel: Route::post('registrar', 'Auth\RegisterController@create'); My class: <?php namespace App; use Illuminate\Notifications\Notifiable; use…