gearhub/laravel-enhancement-suite

Additions that are used in most of our Laravel projects.

v2.0.0 2017-09-08 20:14 UTC

This package is not auto-updated.

Last update: 2024-04-28 01:29:22 UTC


README

Installation

To install with composer you can run:

$ composer require gearhub/laravel-enhancement-suite

or you can edit your composer.json with:

"require": {
    "gearhub/laravel-enhancement-suite": "^1.0.0"
}

Once that is finished, you need to add the service provider to your providers array in your app.php:

GearHub\LaravelEnhancementSuite\LaravelEnhancementSuiteServiceProvider::class

Next, you need to add the facade to your aliases array in your app.php:

'Repository' => \GearHub\LaravelEnhancementSuite\Facades\Repository::class

Run this in the command line:

$ php artisan vendor:publish --provider="GearHub\LaravelEnhancementSuite\LaravelEnhancementSuiteServiceProvider"