Category : Laravel

This article lays out steps of integrating the Bootstrap based layout to Laravel Project, using Laravel's blade templating engine. Requirements Installed Laravel Project on your Local. Bootst...
Read Article
Connecting your laravel project to mysql database or any other relational database is fairly easy. Since we have done the installation with XAMPP. It comes along with already installed mysql and p...
Read Article
There are multiple ways through which you can pass data from your routes to views. We will explore them all. Attaching data to view You can bind your data directly to your view file and wh...
Read Article
Routes handle the URL mapping of your application to a specific function or code. Routes URI can either be mapped to a inline function defined or to a controller method. In Laravel 5.5 , Most of th...
Read Article
As you know Laravel Middleware can be applied to all the rotues in your controller by invoking the middleware method of Controller. class UserController extends Controller { /** * Instant...
Read Article
Requirements Linux Installed System. Laravel 5.5 requires PHP version 7 or more, and some other extensions. Since we are doing setup on XAMPP. Make sure to Install the XAMPP with version >=...
Read Article
This tutorial gives a step by step guide on how to setup Role based authentication in Laravel along with it's native authentication system. We are using Laravel 5.5 for this tutorial. Role Based A...
Read Article
This tutorial will guide you how to go about Changing Authentication Table in Laravel to use table other than default table users. This steps are given as per the Laravel v 5.5 Before Going into...
Read Article
The Laravel Authentication Out-Of-Box Feature works very well and is customizable. This tutorial will show you how you can use username field instead of default email field which is provided by Larave...
Read Article
Laravel framework comes with an out of box working authentication functionality for your application that includes Login, Logout, Register, Forgot Password and Remember me functions. Laravel authen...
Read Article