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

replaceRouteGroup() protected method

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