![]() |
You can simply add that function as part of the data array that will be sent to the view in your controller, like so:
Code: $data['pagination'] = $this->pagination->create_links(); Then in your twig template, you echo the variable: Code: {{ pagination }} |
Messages In This Thread |
How do I use Codeigniter pagination inside Twig views? - by Ajax30 - 11-24-2020, 03:46 AM
RE: How do I use Codeigniter pagination inside Twig views? - by sammyskills - 11-24-2020, 04:49 AM
|