Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
invoiceshelf
/
modules
/
src
/
Commands
/
stubs
/
scaffold
:
ModuleDeleteCommand.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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() : int { $this->laravel['modules']->delete($this->argument('module')); $this->info("Module {$this->argument('module')} has been deleted."); return 0; } protected function getArguments() { return [ ['module', InputArgument::REQUIRED, 'The name of module to delete.'], ]; } }