We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f636c6 commit bce4b26Copy full SHA for bce4b26
src/ServiceProvider.php
@@ -16,14 +16,14 @@ public function boot()
16
{
17
$this->publishes([
18
__DIR__ . '/../config/verification.php' => $this->app->configPath().'/verification.php',
19
- ], 'config');
+ ], 'verification-config');
20
21
if (! class_exists('CreateVerificationTables')) {
22
$timestamp = date('Y_m_d_His', time());
23
24
__DIR__ . '/../database/migrations/create_user_verifications_table.php.stub'
25
=> $this->app->databasePath()."/migrations/{$timestamp}_create_user_verifications_table.php",
26
- ], 'migrations');
+ ], 'verification-migrations');
27
}
28
29
// Add the Activation facade
0 commit comments