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 …
Category: Technical
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 …
Send Email on Registration with Laravel This article will show you how to send an welcome email to the user just after the registration. Before we continue make sure you have following ready Laravel Setup Laravel …
As a standard practice of creating an CRUD application there are certain actions in like update and delete which requires the method submitted to the server url to be either PUT/PATCH (to modify the resource) and …