Category : Laravel

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...
Read Article
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 th...
Read Article
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 passwor...
Read Article
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...
Read Article
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...
Read Article
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. Tutori...
Read Article
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 are u...
Read Article
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...
Read Article
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...
Read Article
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 r...
Read Article