CakePHP4 - Get the First Record in Records Returned
Get the first record in records returned
$articles = $this->Articles->find()->all();
$this->set(compact('articles '));
// View
$featuredArticle= $articles->first();