File "ModuleDeleteCommand.php"
Full Path: /home/isoftco/public_html/hrm/vendor/nwidart/laravel-modules/src/Commands/ModuleDeleteCommand.php
File size: 633 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nwidart\Modules\Commands;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputArgument;
class ModuleDeleteCommand extends Command
{
protected $name = 'module:delete';
protected $description = 'Delete a module from the application';
public function handle()
{
$this->laravel['modules']->delete($this->argument('module'));
$this->info("Module {$this->argument('module')} has been deleted.");
}
protected function getArguments()
{
return [
['module', InputArgument::REQUIRED, 'The name of module to delete.'],
];
}
}