setLocale($app_locale); // Set locale for carbon dates setlocale(LC_TIME, $app_locale . '_' . mb_strtoupper($app_locale)); // Get all migrations with all directories $this->loadMigrationsFrom( $this->get_migration_paths() ); } /** * @return array */ private function get_migration_paths(): array { $mainPath = database_path('migrations'); $directories = glob($mainPath . '/*', GLOB_ONLYDIR); return array_merge([$mainPath], $directories); } }