Skip to content

Commit

Permalink
made a fix on service provider removed the typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrax committed Feb 22, 2021
1 parent 52ca021 commit 72374d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LocationDemografiaServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),

Expand Down

0 comments on commit 72374d5

Please sign in to comment.