File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public function boot()
31
31
});
32
32
33
33
$ this ->publishes ([
34
- __DIR__ .'/config.php ' => config_path ('nova- csv-importer .php ' )
35
- ], 'nova- csv-import ' );
34
+ __DIR__ .'/../ config/csv-import .php ' => config_path ('csv-import .php ' )
35
+ ], 'csv-import ' );
36
36
}
37
37
38
38
/**
@@ -63,18 +63,18 @@ protected function routes()
63
63
*/
64
64
public function register ()
65
65
{
66
- $ this ->mergeConfigFrom (__DIR__ .'/config.php ' , 'nova- csv-importer ' );
66
+ $ this ->mergeConfigFrom (__DIR__ .'/../ config/csv-import .php ' , 'csv-import ' );
67
67
68
68
$ this ->app ->when ([UploadController::class, ImportController::class])
69
69
->needs (Filesystem::class)
70
70
->give (function () {
71
- return Storage::disk (config ('nova- csv-import.disk ' ));
71
+ return Storage::disk (config ('csv-import.disk ' ));
72
72
});
73
73
74
74
$ this ->app ->when ([UploadController::class, ImportController::class])
75
75
->needs (ModelImporter::class)
76
76
->give (function () {
77
- $ class = $ this ->app ['config ' ]->get ('nova- csv-importer.importer ' );
77
+ $ class = $ this ->app ['config ' ]->get ('csv-importer.importer ' );
78
78
79
79
$ importable = \Maatwebsite \Excel \Concerns \Importable::class;
80
80
You can’t perform that action at this time.
0 commit comments