Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function handle() |
||
30 | { |
||
31 | $this->info('Installing Historiable...'); |
||
32 | $this->info('Publishing configuration...'); |
||
33 | $this->call('vendor:publish', [ |
||
34 | '--provider' => "Iferas93\HistoriableModel\HistoriableModelServiceProvider", |
||
35 | '--tag' => "config" |
||
36 | ]); |
||
37 | |||
38 | $this->info('Publishing migrations...'); |
||
39 | $this->call('vendor:publish', [ |
||
40 | '--provider' => "Iferas93\HistoriableModel\HistoriableModelServiceProvider", |
||
41 | '--tag' => "migrations" |
||
42 | ]); |
||
43 | |||
44 | $this->info('Historiable has been Installed successfully'); |
||
45 | } |
||
46 | } |
||
47 |