Yeh page CodeIgniter 4 View Layouts ($this->extend('layouts/main')) ka upayog karke render ho raha hai.
app/Views/my_page.php<?= $this->extend('layouts/main') ?><?= $this->section('title') ?> My Title <?= $this->endSection() ?><?= $this->section('content') ?> ... <?= $this->endSection() ?>return view('my_page');