Laravel

Passing data to views from routes in Laravel.

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...

Oct 23, 2017 · Tushar
Defining Basic Routes in Laravel

Defining Basic Routes in Laravel

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...

Oct 14, 2017 · Tushar
How to Install Laravel 5.5 with XAMPP on Linux

How to Install Laravel 5.5 with XAMPP on Linux

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 >=...

Oct 07, 2017 · Tushar
Changing Authentication Table in Laravel

Changing Authentication Table in Laravel

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...

Oct 03, 2017 · Tushar
Installing Laravel Collective Package on Laravel 5.5

Installing Laravel Collective Package on Laravel 5.5

With Laravel 5, many inbuilt components that were part of core framework has been removed and are been managed independently as Laravel Collective. So If you are having an old version web application...

Sep 18, 2017 · Tushar