Changing cakephp paginator sorting label
Following is the default cakephp paginator sorting label.
<?php echo $this->Paginator->sort(‘company_id’); ?>
We can change it as follows
<?php echo $this->Paginator->sort(‘company_id’,’Name of the Company’); ?>