Welcome Guest, Not a member yet? Register   Sign In
Do you have any tips for the best way to structure partial views?
#2

Views/parent.php
PHP Code:
<h1>Child: <?=$this->renderSection('child')?></h1> 

Views/child-a.php
PHP Code:
<?= $this->extend('parent'?>

<?= $this->section('child'?>
AAAAAAA
<?= $this->endSection() ?>

Views/child-b.php
PHP Code:
<?= $this->extend('parent'?>

<?= $this->section('child'?>
BBBBBBB
<?= $this->endSection() ?>

Now
PHP Code:
view('child-a'// <h1>Child: AAAAAAA</h1>
view('child-b'// <h1>Child: BBBBBBB</h1> 
Reply


Messages In This Thread
RE: Do you have any tips for the best way to structure partial views? - by iRedds - 01-18-2022, 06:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB