1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Encore\Admin\Console;
- use Illuminate\Console\Command;
- class UninstallCommand extends Command
- {
- /**
- * The console command name.
- *
- * @var string
- */
- protected $signature = 'admin:uninstall';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Uninstall the admin package';
- /**
- * Execute the console command.
- *
- * @return void
- */
- public function handle()
- {
- if (!$this->confirm('Are you sure to uninstall laravel-admin?')) {
- return;
- }
- $this->removeFilesAndDirectories();
- $this->line('<info>Uninstalling laravel-admin!</info>');
- }
- /**
- * Remove files and directories.
- *
- * @return void
- */
- protected function removeFilesAndDirectories()
- {
- $this->laravel['files']->deleteDirectory(config('admin.directory'));
- $this->laravel['files']->deleteDirectory(public_path('vendor/laravel-admin/'));
- $this->laravel['files']->delete(config_path('admin.php'));
- }
- }
|