In cakephp 3.x i can\'t do paginate order in a find
This is my controller:
//AgentsController.php public function show() { $agents = $this->Ag
Try:
$this->paginate = ['sortWhitelist' => ['full_name','username','regions'],'limit' => 3];
This will also set pagination limit too.