whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Traits
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/nwidart/laravel-modules/src/Traits/MigrationLoaderTrait.php
<?php namespace Nwidart\Modules\Traits; trait MigrationLoaderTrait { /** * Include all migrations files from the specified module. * * @param string $module */ protected function loadMigrationFiles($module) { $path = $this->laravel['modules']->getModulePath($module) . $this->getMigrationGeneratorPath(); $files = $this->laravel['files']->glob($path . '/*_*.php'); foreach ($files as $file) { $this->laravel['files']->requireOnce($file); } } /** * Get migration generator path. * * @return string */ protected function getMigrationGeneratorPath() { return $this->laravel['modules']->config('paths.generator.migration'); } }
Copyright ©2021 || Defacer Indonesia