PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportConsoleCommands
/
Commands
/
Editing: RmCommand.php
<?php namespace Livewire\Features\SupportConsoleCommands\Commands; class RmCommand extends DeleteCommand { protected $signature = 'livewire:rm {name} {--inline} {--force} {--test}'; protected function configure() { $this->setHidden(true); } }
SAVE
CANCEL