Install and maintain all your helpers in a simple way
Add the package in your composer.json by executing the command.
composer require flobbos/laravel-simple-helper
Register the service provider with your app/config/app.php
Flobbos\LaravelSimpleHelper\LaravelSimpleHelperServiceProvider::class,
Publish the configuration file.
php artisan vendor:publish
By default the package assumes that your helpers live in the app\Helpers directory. You have the option to specify the helpers directory in the config.
The second option is to just load everything that's in the Helpers directory or specify each helper in the config file.
LaravelSimpleHelper is generally compatible with Laravel version 5.X.