Appzcoder\CrudGenerator\Commands\CrudControllerCommand::replaceModelName PHP Method

replaceModelName() protected method

Replace the modelName for the given stub.
protected replaceModelName ( string &$stub, string $modelName )
$stub string
$modelName string
    protected function replaceModelName(&$stub, $modelName)
    {
        $stub = str_replace('{{modelName}}', $modelName, $stub);
        return $this;
    }