ahuggins / helpers
Add a helpers.php file to your Laravel application.
0.0.6
2017-08-29 22:36 UTC
Requires
None
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
A simple way to add a customizable helpers.php file to your Laravel application.
- Simply run this composer require command:
composer require ahuggins/helpers
- Then if your application is >= Laravel 5.5, you would be done. Otherwise you will need to add the following service provider to your
config/app.phpfile.
AHuggins\Helpers\Providers\HelpersServiceProvider::class,
- Publish the helpers file.
php artisan vendor:publish --tag=helpers