| Package Data | |
|---|---|
| Maintainer Username: | Tjoosten |
| Package Create Date: | 2017-07-17 |
| Package Last Update: | 2018-09-20 |
| Home Page: | https://misfits-be.github.io/L5.x-database-layering/ |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 15:02:32 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,536 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 5 |
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.