How can i access data from another controller?

To access the Facs model from your PagesController you have to load the model explicitly:

public function display()
{
$this->loadModel(“Facs”);
$facs = $this->Facs->find()->all();

$this->set(‘facs ‘, $facs );
$this->set(’_serialize’, ['facs ']);
}