From 72374d567bd47746480c5c16a9b73525b7e7a522 Mon Sep 17 00:00:00 2001 From: emmanuel Date: Mon, 22 Feb 2021 16:08:13 +0300 Subject: [PATCH] made a fix on service provider removed the typo --- src/LocationDemografiaServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LocationDemografiaServiceProvider.php b/src/LocationDemografiaServiceProvider.php index e9984b2..5fc2d8f 100644 --- a/src/LocationDemografiaServiceProvider.php +++ b/src/LocationDemografiaServiceProvider.php @@ -42,7 +42,7 @@ public function boot() //publishing migrations here.. if (!class_exists('CreateStatesTable') && !class_exists('CreateCountriesTable') && !class_exists('CreateCitiesTable')) { $this->publishes([ - __DIR__ . '/../database/migrations/create_cities_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_cities_table_table.php'), + __DIR__ . '/../database/migrations/create_cities_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_cities_table.php'), __DIR__ . '/../database/migrations/create_countries_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_countries_table.php'), __DIR__ . '/../database/migrations/create_states_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_states_table.php'),