Passing data to views from routes in Laravel.
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...
Insights, tutorials, and thoughts on web development and technology.
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...
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...
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...
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 >=...
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...
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...
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...
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...
On starting a Spring Boot application, you must have seen the Spring Logo Banner. This tutorial will show you how to Turn it Off or Customize the Banner. Turning Off the Banner You can create...