activismebe/database-layering is a Laravel package for laravel repositories.
It currently has 0 GitHub stars and 1.626 downloads on Packagist (latest version 0.35).
Install it with composer require activismebe/database-layering.
Discover more Laravel packages by activismebe
or browse all Laravel packages to compare alternatives.
Last updated
ActivismeBe Database Layering is a package for Laravel 5 which is used to abstract the database layer. This make applications much easier to maintain.
NOTE: This package can be used in Laravel 5.4 or higher.
You can install the package via composer:
composer require activismebe/database-layering
Now add the service provider in config/app.php file:
'providers' => [
// ...
ActivismeBE\DatabaseLayering\Repositories\Providers\RepositoryProvider::class,
];
You can publish the configuration file now with;
php artisan vendor:publish
After that u ready to go and completed the installation.