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

replacePaginationNumber() protected method

Replace the pagination placeholder for the given stub
protected replacePaginationNumber ( &$stub, $perPage )
$stub
$perPage
    protected function replacePaginationNumber(&$stub, $perPage)
    {
        $stub = str_replace('{{pagination}}', $perPage, $stub);
        return $this;
    }