Toll Free : +1 56565 56594

Email : info@example.com

About Webmeen Project

Yeh page CodeIgniter 4 View Layouts ($this->extend('layouts/main')) ka upayog karke render ho raha hai.

How to create new pages:

  1. New View file banayein app/Views/my_page.php
  2. Top par add karein: <?= $this->extend('layouts/main') ?>
  3. Title Section set karein: <?= $this->section('title') ?> My Title <?= $this->endSection() ?>
  4. Content Section me HTML likhein: <?= $this->section('content') ?> ... <?= $this->endSection() ?>
  5. Controller me render karein: return view('my_page');
Back to Home