Resolve Laravel 5.5 Exception : 1071 Specified Key was too Long; max key length is 767 bytes

With the new version of Laravel if you try to migrate your table into the database with php artisan migrate…

tgugnani

Send Email on Registration with Laravel Authentication

Send Email on Registration with Laravel This article will show you how to send an welcome email to the user…

tgugnani

A blog post every alternate day.

Starting today I am taking up a challange of writing a blog post every alternate day. I have been writing…

tgugnani

How to use PUT/PATCH and DELETE method in Laravel 5.5

As a standard practice of creating an CRUD application there are certain actions in like update and delete which requires…

tgugnani

Integrating Bootstrap 4 Layout to Laravel Project

This article lays out steps of integrating the Bootstrap based layout to Laravel Project, using Laravel's blade templating engine. Requirements…

tgugnani

Connecting your Project to Database in Laravel

Connecting your laravel project to mysql database or any other relational database is fairly easy. Since we have done the…

tgugnani

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

tgugnani

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…

tgugnani

How to Apply Laravel Middleware to certain routes or exclude from certain routes

As you know Laravel Middleware can be applied to all the rotues in your controller by invoking the middleware method…

tgugnani

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…

tgugnani