Skip to content

Tag: laravel

How to check user input in laravel

I have a column input named Address, and how to check, if user input like null, ‘null’ and ” , the return response will be error. I have make it, but it not working. This is my code: Answer You may use the empty function, which would return FALSE if var exists and has a non-empty, non-zero v…

Custom login and registration with auth laravel 5.7

I’m trying to create the first project with Laravel 5.7. In this project I have three different areas with three different login (ex. Login for users, login for admin, login for technicians). Now, I would like to customize the first login (url, html, input, class, db table, db column ecc…) but I d…