Adds support for config defined Model namespace

This commit is contained in:
Jani Gyllenberg
2022-09-07 12:31:56 -04:00
parent 9980bc7e9a
commit a241493142
2 changed files with 22 additions and 10 deletions

View File

@@ -1,7 +1,19 @@
<?php
return [
/**
* Namespace for Laravel Models
*/
'namespace' => '\\App\\Models\\',
/**
* Path to directory containing JSON files for synchronization
*/
'path' => base_path('sync'),
/**
* Array of Model names which controls the synchronization order
*/
'order' => [
//
],