| 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: | 2025-11-03 03:02:57 |
| Package Statistics | |
|---|---|
| Total Downloads: | 474 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| 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;
};