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 […]
April 10, 2016

Modern Web Development with Laravel 5.2 (PHP Framework)

I highly recommend this course, Maximilian Schwarzmüller is a true inspriation, he loves teaching and has excellent knowledge. Here is the url: https://www.udemy.com/modern-web-development-with-laravel/ Course Description This course uses Laravel 5.2. You learned the basics but still feel like something’s missing? You want to get your development skills to the next […]
February 13, 2016

How to Make User Login and Registration Laravel 5.1

Just a quick note that Laravel 5.2 now features an artisan command: php artisan make:auth This will create the basic views you need for login, registration, and password resets. You might still want to read through this tutorial, it will give you an idea on how the AuthController works, which […]
January 3, 2016

Simple Laravel CRUD with Resource Controllers

Creating, reading, updating, and deleting resources is used in pretty much every application. Laravel helps make the process easy using resource controllers. Resource Controllers can make life much easier and takes advantage of some cool Laravel routing techniques. Today, we’ll go through the steps necessary to get a fully functioning […]