Skip to content

Commit cfd6982

Browse files
author
angel cruz
committed
Fixed what needed fixing and squished some bugs. 🐛
1 parent dad0181 commit cfd6982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SimpleCrmServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function boot(): void
1111
if ($this->app->runningInConsole()) {
1212
$this->publishes([
1313
__DIR__ . '/../models' => app_path('Models/Tepuilabs/SimpleCrm'),
14-
], 'models');
14+
], 'simple-crm-models');
1515

1616
$migrationFileNames = [
1717
'create_leads_table.php',
@@ -22,7 +22,7 @@ public function boot(): void
2222
if (! $this->migrationFileExists($key)) {
2323
$this->publishes([
2424
__DIR__ . "/../database/migrations/{$key}.stub" => database_path('migrations/' . date('Y_m_d_His', time()) . '_' . $key),
25-
], 'migrations');
25+
], 'simple-crm-migrations');
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)