Views
The view file
<?php echo $this->partial("main")->get(); ?>
<?php echo $this->partial("form")->get(); ?>Change view - example 1
class Blog
{
private $provider;
public function __construct(Provider $provider)
{
$this->provider = $provider;
$this->provider->view()->setView("blog");
}
public function posts(ResponseInterface $response, RequestInterface $request): ResponseInterface
{
// Your post partials here
return $response;
}
...Last updated