Skip to content

gearhub/laravel-enhancement-suite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Enhancement Suite

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"