Posts by Iuri Gustavo • 39 points
2 posts
-
1
votes1
answer86
viewsA: Customizing Standard Login Error Message - Jetstream
Create the Resources/lang/en.json file and add { "Whoops! Something went wrong.": "Ops! Algo deu errado" } I advise also take a look at the package "lucascudo/Laravel-en-localization"…
-
-1
votes1
answer27
viewsA: Laravel 8 - bootstrapswitch - Change output before sending to Bank
You can treat on request: $idchamado['os_tipo_id'] = $request->os_tipo_id == 'on' ? '2' : '1'; It is advisable to create an Ordemservicostorerequest class and process the data there. class…