@@ -16,11 +16,11 @@ class AdaServiceProvider extends ServiceProvider
1616 */
1717 public function boot ()
1818 {
19- $ this ->loadViewsFrom (__DIR__ . '/../resources/views/prompts ' , 'ada ' );
19+ $ this ->loadViewsFrom (__DIR__ . '/../resources/views/prompts ' , 'ada ' );
2020
2121 if ($ this ->app ->runningInConsole ()) {
2222 $ this ->publishes ([
23- __DIR__ . '/../config/ada.php ' => config_path ('ada.php ' ),
23+ __DIR__ . '/../config/ada.php ' => config_path ('ada.php ' ),
2424 ], 'ada-config ' );
2525 }
2626 }
@@ -30,20 +30,20 @@ public function boot()
3030 */
3131 public function register ()
3232 {
33- $ this ->mergeConfigFrom (__DIR__ . '/../config/ada.php ' , 'ada ' );
33+ $ this ->mergeConfigFrom (__DIR__ . '/../config/ada.php ' , 'ada ' );
3434
35- $ this ->loadMigrationsFrom (__DIR__ . ' /migrations ' );
35+ $ this ->loadMigrationsFrom (__DIR__ . ' /../database /migrations ' );
3636
3737 $ this ->publishes ([
38- __DIR__ . '/../config/ada.php ' => config_path ('ada.php ' ),
38+ __DIR__ . '/../config/ada.php ' => config_path ('ada.php ' ),
3939 ], 'ada-config ' );
4040
4141 $ this ->publishes ([
42- __DIR__ . '/../database/migrations ' => database_path ('migrations ' ),
42+ __DIR__ . '/../database/migrations ' => database_path ('migrations ' ),
4343 ], 'ada-migrations ' );
4444
4545 $ this ->publishes ([
46- __DIR__ . '/../resources/views ' => resource_path ('views/vendor/ada ' ),
46+ __DIR__ . '/../resources/views ' => resource_path ('views/vendor/ada ' ),
4747 ], 'ada-views ' );
4848
4949 $ this ->app ->singleton ('ada ' , function () {
0 commit comments