Crud\Action\BaseAction::resourceName PHP Method

resourceName() public method

By default it uses Inflector::humanize, but can be changed using the "name" configuration property
public resourceName ( string | null $value = null ) : string
$value string | null Name to set
return string
    public function resourceName($value = null)
    {
        if ($value !== null) {
            return $this->config('name', $value);
        }
        if (empty($this->_config['name'])) {
            $this->config('name', $this->_deriveResourceName());
        }
        return $this->config('name');
    }