PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Traits
/
Editing: ModuleCommandTrait.php
<?php namespace Nwidart\Modules\Traits; trait ModuleCommandTrait { /** * Get the module name. * * @return string */ public function getModuleName() { $module = $this->argument('module') ?: app('modules')->getUsedNow(); $module = app('modules')->findOrFail($module); return $module->getStudlyName(); } }
SAVE
CANCEL