Files
laravel-data-sync/config/data-sync.php
2022-09-07 12:31:56 -04:00

21 lines
348 B
PHP

<?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' => [
//
],
];