File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -42,19 +42,19 @@ public function handle()
42
42
43
43
$ this ->info ('** publishing panel assets ' );
44
44
$ this ->call ('vendor:publish ' , [
45
- '--tag ' => 'public ' ,
45
+ '--tag ' => 'panelpublic ' ,
46
46
'--quiet ' => null
47
47
//'--force' => 1
48
48
]);
49
49
$ this ->info ('** publishing panel config ' );
50
50
$ this ->call ('vendor:publish ' , [
51
- '--tag ' => 'config ' ,
51
+ '--tag ' => 'panelconfig ' ,
52
52
'--quiet ' => null
53
53
//'--force' => 1
54
54
]);
55
55
$ this ->info ('** publishing panel views ' );
56
56
$ this ->call ('vendor:publish ' , [
57
- '--tag ' => 'views ' ,
57
+ '--tag ' => 'panelviews ' ,
58
58
'--quiet ' => null
59
59
//'--force' => 1
60
60
]);
Original file line number Diff line number Diff line change @@ -103,20 +103,20 @@ public function register()
103
103
104
104
$ this ->publishes ([
105
105
__DIR__ . '/../../../public ' => public_path ('packages/serverfireteam/panel ' )
106
- ], 'public ' );
106
+ ], 'panelpublic ' );
107
107
108
108
$ this ->publishes ([
109
109
__DIR__ .'/config/panel.php ' => config_path ('panel.php ' ),
110
110
__DIR__ .'/config/elfinder.php ' => config_path ('elfinder.php ' ),
111
- ], 'config ' );
111
+ ], 'panelconfig ' );
112
112
}
113
113
114
114
public function boot ()
115
115
{
116
116
$ this ->loadViewsFrom (__DIR__ .'/../../views ' , 'panelViews ' );
117
117
$ this ->publishes ([
118
118
__DIR__ .'/../../views ' => base_path ('resources/views/vendor/panelViews ' ),
119
- ], 'views ' );
119
+ ], 'panelviews ' );
120
120
121
121
include __DIR__ ."/../../routes.php " ;
122
122
You can’t perform that action at this time.
0 commit comments