🖼️Views
Twig Templates
Using Timber via PressGang Controllers to Render Views
use Timber\Timber;
abstract class AbstractController implements ControllerInterface {
public function __construct(?string $template = null) {
$this->template = $template;
$this->context = Timber::context();
}
}Escaping
Translations (i18n)
Views Directory
Last updated