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