Move some database calls into a support class

This commit is contained in:
Nabeel Shahzad
2018-06-20 11:18:30 -05:00
parent a083f9c671
commit 9bc3a67c9a
3 changed files with 101 additions and 43 deletions

View File

@@ -53,7 +53,7 @@ return [
'config' => ['path' => 'Config', 'generate' => true],
'command' => ['path' => 'Console', 'generate' => true],
'migration' => ['path' => 'Database/migrations', 'generate' => true],
'seeder' => ['path' => 'Database/seeders', 'generate' => true],
'seeds' => ['path' => 'Database/seeds', 'generate' => true],
'factory' => ['path' => 'Database/factories', 'generate' => true],
'model' => ['path' => 'Models', 'generate' => true],
'controller' => ['path' => 'Http/Controllers', 'generate' => true],