Views
Twig Templates
Using Timber to via PressGang Controllers to Render Views
use Timber\Timber;
class AbstractController {
public function __construct( string|null $template = null ) {
$this->template = $template;
$this->context = Timber::context();
}
}Views
Last updated