Laravel

HTML Forms in Laravel

To add HTML forms in Laravel, you must install the HTML component. This component is part of a list of components that have been removed from the Laravel core framework. Even though this features have been removed from the main application, they are still maintained meaning that the components can be installed without worrying about …

Modules in Laravel

In order to write modular applications, a laravel-modules package has been created by nWidart which provides the ability to write modules in Laravel 5, a feature not provided by the framework out of the box.
The package is installed via Composer, a few adjustments are made to the Laravel application and then you’re ready to …

Create a New Page in Laravel

After installing and configuring Laravel, one of the first steps in order to understand how the framework works is to create a custom static page with its own route and render a view file with some content. To create a new page in Laravel, first look over parts of the directory structure.
As mentioned in …

Getting Started with Laravel

Laravel is a PHP framework introduced in 2011 used to develop web applications. According to Google trends, the number of search terms for Laravel over the past 5 years have eclipsed other frameworks such as Symfony and Zend.

Getting started with Laravel is easy. Simply download the Laravel installer via Composer:
$ composer global …