October
adding email verification

Adding Email Verification In laravel 5.3 App

Adding email verification process in your laravel 5.3 app step by step. First let’s initiate with an overview so we have an idea what is the actual process we are going to implement followed by the code and the steps. Overview : Create a user with a status of 0 (Zero) i.e. not verified initially Store a random token with the user details on creation Email the token to the user Match the token & user id coming from mail with the database records If matched set the user status to 1 i.e. verified Now, lets start with the code &…

laravel packages

Laravel Packages To Use In Your App

composer require ‘awesome laravel packages’ Starting off with a new app and stuck on which laravel packages to select for basic boilerplate stuff? We have made a list of some of the best laravel packages available to solve the same dilemma. The laravel packages listed below are used by our team on various client projects as well as our in-house products , so they are tried, tested and also trusted 🙂 We select a package against its competitors mainly due to the same reasons that every other developer has, but still for more clarity they are as follows : Developers & contributors being active…

laravel packages

How To Install Laravel On Windows Using WAMP

In this tutorial we will be looking into installing laravel on windows using WAMP. If you are new to laravel, installing laravel on windows might be little over whelming for you at first, I wish to make the installation process for laravel on windows for you as breeze as the framework itself, So let’s dig in Step 1 : Installing WAMP Download it’s dependencies (Visual C++ packages) first, which are as follows. Make sure you are “up to date” in the redistributable packages VC9, VC10, VC11, VC13 and VC14. Visual C++ Packages : The libraries VC9, VC10, VC11 are required…

WordPress Plugin To Display Upcoming WordCamps On wp-admin Dashboard

It’s been quite few years for us designing & developing websites & apps powered by WordPress. Lately we have been planning to use our experience on various projects and share them in the form of useful plugins. wordpress.org repository already has many great plugins created by awesome developers around the world. So we were looking at building something which can add value and be useful both at the same time like everyone hopes for at the start. As these days we are looking forward to various WordCamps happening around, we try to keep our self updated. We saw this idea posted by Ratnesh Sonar on the forum regarding…