Larave 5.6 Blade Layout with Example
Blade - a Laravel Template Engine is simple yet powerful language. It is Laravel's lightweight, easy-to-use syntax language. As you would have noticed by now, it has a...
Laravel is emerging as one of the powerful and massive languages of this era. Created by Taylor Otwell, it is a modern web application MVC framework. Laravel is the most popular open-source framework for PHP. This is Laravel 101 tutorials from experienced developers who teach A to Z of this amazing framework.
Blade - a Laravel Template Engine is simple yet powerful language. It is Laravel's lightweight, easy-to-use syntax language. As you would have noticed by now, it has a...
We took a good look at how to pass data to views in the last section, but then what if you have a situation where you need to...
As we discussed earlier in Laravel Introduction and Controllers, Laravel framework promotes MVC architecture. Laravel View is a component of MVC View. It helps us separate the presentation...
While creating an application, we often need to perform CRUD (i.e. Create, Read, Update, Delete) operations. Laravel handles this requirement seamlessly with a single command. Creating a controller...
As we know, Laravel is an MVC Framework. Though we can create routes and directly render required data, it doesn't really serve the purpose of MVC architecture. MVC...
Moving a step further, you may realize that at times we need to capture some segments of the URI within our routes to render specific data. With Laravel,...
# Laravel 5.6 Routing Overview All application routes (or paths) are stored in the Routes directory amidst respective functional files. Routing is probably the first step of developing...
In this section, we will try and code a simple Laravel program to understand nitch-glitch of this framework. As in any other language, probably the easiest and starting...
Since each and every framework has its unique bootstrap implementation, it becomes necessary to first have an eagle view of its structure and working methodology. And same goes...
# What is Laravel? Laravel, created by Taylor Otwell, is a modern web application MVC framework. It is the most popular open-source framework for PHP. It is highly...