File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,12 @@ public function boot()
4343 $ this ->publishes ([
4444 __DIR__ . '/resources/migrations/ ' => database_path ('migrations ' )
4545 ], 'migrations ' );
46+
47+ // configurations
48+ $ this ->publishes ([
49+ __DIR__ . '/config/user-verification.php ' => config_path ('user-verification.php ' )
50+ ], 'config ' );
51+
4652 }
4753
4854 /**
@@ -53,6 +59,11 @@ public function boot()
5359 public function register ()
5460 {
5561 $ this ->registerUserVerification ($ this ->app );
62+
63+ // configurations
64+ $ this ->mergeConfigFrom (
65+ __DIR__ . '/config/user-verification.php ' , 'user-verification '
66+ );
5667 }
5768
5869 /**
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ return [
4+
5+ /*
6+ |--------------------------------------------------------------------------
7+ | Laravel User Verification Defaults
8+ |--------------------------------------------------------------------------
9+ */
10+
11+ ];
You can’t perform that action at this time.
0 commit comments