public partial (mixed $partialPath, [mixed $params])
Renders a partial view
1 2 | // Show a partial inside another view $this ->partial( 'shared/footer' ); |
1 2 | // Show a partial inside another view with parameters $this ->partial( 'shared/footer' , [ 'content' => $html ]); |
Please login to continue.