Authentication

June 13, 2016

Creating an Admin Area with Laravel 5

It is a very essential feature and Laravel auth has no built-in solution. This tutorial assumes prior knowledge of Laravel 5. Adding a new Column to Users Table In order for this authentication to work, we are going to need to have a column that lets us distinguish between either […]
May 15, 2016

Role Based Authentication in Laravel with JWT

JWT is the best option at this time to create authentication for stateless applications, mostly Web API. It has a lot of advantages including flexibility, enables scaling of HTTP applications, self contained and available in all standard programming languages. In Laravel, we are going to use Tymon’s jwt-auth as demonstrated […]