Wallogit.com
2017 © Pedro Peláez
This package is no longer actively maintained., (*1)
This package contain some helper for assets, standardize ajax request, AwsS3 utilities and more. All helpers are framework agnostic, but we provide service provider and base resource files for Laravel., (*2)
Begin by installing this package through Composer. Edit your project's composer.json file to require ellipsesynergie/laravel-helper., (*4)
{
"require": {
"ellipsesynergie/laravel-helper": "dev-master"
}
}
Update your packages with composer update or install with composer install., (*5)
Once this operation completes, you need to add the service provider. Open app/config/app.php, and add a new item to the providers array., (*6)
EllipseSynergie\LaravelHelper\LaravelHelperServiceProvider
Note : You can add class aliases in app/config/app.php if you want to use helpers facades., (*7)
'Ajax' => 'EllipseSynergie\LaravelHelper\Facades\Ajax', 'Assets' => 'EllipseSynergie\LaravelHelper\Facades\Assets', 'AwsS3' => 'EllipseSynergie\LaravelHelper\Facades\AwsS3', 'Javascript' => 'EllipseSynergie\LaravelHelper\Facades\Javascript',
To configure the package to meet your needs, you must publish the configuration in your application before you can modify them. Run this artisan command., (*8)
php artisan config:publish ellipsesynergie/laravel-helper