JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ModuleCommandTrait.php"
Full Path: /var/www/laravel_filter/vendor/nwidart/laravel-modules/src/Traits/ModuleCommandTrait.php
File size: 367 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}
}