Package Data | |
---|---|
Maintainer Username: | PKeidel |
Maintainer Contact: | PKeidel@sags-per-mail.de (PKeidel) |
Package Create Date: | 2017-09-07 |
Package Last Update: | 2024-08-28 |
Home Page: | |
Language: | Blade |
License: | MIT |
Last Refreshed: | 2024-11-15 15:03:12 |
Package Statistics | |
---|---|
Total Downloads: | 418 |
Monthly Downloads: | 26 |
Daily Downloads: | 2 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
composer require pkeidel/dbtolaravel
DB2Laravel is just active if APP_DEBUG=true
or DBTOLARAVEL_ENABLED=true
As always, add it to your app/config.php:
'providers' => [
// ....
PKeidel\DBtoLaravel\Providers\DBtoLaravelServiceProvider::class,
]
// get you a coffee, you're done
DBtoLaravel is enabled if APP_DEBUG=true
or DBTOLARAVEL_ENABLED=true
Register a filter in your AppServiceProvider.php
:
DBtoLaravelHelper::$FILTER = function($table) {
return strpos($table, 'eyewitness_io_') !== 0 && strpos($table, 'oauth_') !== 0;
};