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

replaceCrudName() protected method

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