Friday, January 5th, 2018
If you're working on a PHP project that uses several Composer packages, you may find yourself needing to create a Composer package locally without submitting it to Packagist or other hosted repositories. To save you from having to create an empty Packagist package and constantly having to update the hosted code, you can start developing…
Sunday, August 13th, 2017
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…
Friday, August 11th, 2017
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…