ahuggins / helpers
Add a helpers.php file to your Laravel application.
Installs: 85
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ahuggins/helpers
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.php
file.
AHuggins\Helpers\Providers\HelpersServiceProvider::class,
- Publish the helpers file.
php artisan vendor:publish --tag=helpers