I am able to limit pagination result in controller
$this->paginate = ['limit'=>2];
$products = $this->paginate($this->Products);
Now a scenario I need to limit result in view file
.Using paginator helper is it possible to limit data in view ?
I am able to limit pagination result in controller
$this->paginate = ['limit'=>2];
$products = $this->paginate($this->Products);
Now a scenario I need to limit result in view file
.Using paginator helper is it possible to limit data in view ?