Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function handle() |
||
19 | { |
||
20 | $this->comment('Publishing cms assets...'); |
||
21 | $this->callSilent('vendor:publish', ['--tag' => 'cms-assets']); |
||
22 | |||
23 | $this->comment('Publishing cms Configuration...'); |
||
24 | $this->callSilent('vendor:publish', ['--tag' => 'cms-config']); |
||
25 | |||
26 | $this->info('Laravel cms was installed successfully.'); |
||
27 | } |
||
28 | } |
||
29 |