I was working on a Project where I had to change the default functionality of Forget and Reset Password to work with username instead on email. Since Laravel’s out of the box authentication functionality works very …
Author: tgugnani
If you are new to Laravel and you come across this screen on your developmet screen. I have posted few possible reasons for you to easily fix this thing. CSRF token verification fails Laravel protects it’s …
Implementing Two Factor Authentication in Laravel In this article we will cover How to setup Two Factor Authentication in Laravel on top of Laravel Basic Authentication. We will be using Google2FA-Laravel Package for the …
Some application which contains sensitive data requires you to change your password every N number of days. Applications in Banking sector or others which contain more sensitive data usually follow this approach. In this article we …
In this article we will go over on how to implement Password History functionality on top of Laravel Authentication. Password History forces users or your application customers to choose fresh password instead of choosing one from …
Laravel Tutorials PHP Laravel Framework makes it easier to build PHP MVC web applications. These PHP Laravel Framework tutorials will help you understand and implement basic and complex functionality and features in laravel. Although laravel has …
In this article we will cover an example code of how to send emails in Laravel. Setting up the Mail Driver Laravel provides a API with driver support for SMTP, Mailgun, SpartPost etc. For testing in …
NOTE:Laravel version 5.7 has introduced out of the box Email Verification and account activation. If you are using Laravel version >= 5.7, Please use the inbuilt code for email verification. Tutorial here -> User Email Verification in …
Often in your application you will come across a requirement where you need to get the details from the database from a particular table with the unique id that is passed into the URL. If you …
With the new version of Laravel if you try to migrate your table into the database with php artisan migrate command. You might receive this Exception "Syntex error or access violation : 1071 Specified key was …