In cakephp 3.x I cannot do paginate order in search
This is my controller:
//AgentsController.php public function show() { $agents = $this->Agents->find() $this->set('agents', $this->paginate($agents)); }
And here is part of my view
//show.ctp <table class="table table-striped"> <thead> <tr> <th> <?php echo $this->Paginator->sort('full_name', 'Nome', array('escape' => false)); ?> </th> <th> <?php echo $this->Paginator->sort('username', 'Email', array('escape' => false)); ?> </th> <th> <?php echo $this->Paginator->sort('regions', 'Regioni', array('escape' => false)); ?> </th> </tr> </thead>
Where am I mistaken?
DarioLap
source share