From ed600d57dc2138d63db836d63b6e7e727a4af365 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Mon, 26 Jan 2026 11:12:13 +0300 Subject: [PATCH 1/3] Mention blade template engine in docs --- src/guide/views/template-engines.md | 3 ++- src/guide/views/view.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/guide/views/template-engines.md b/src/guide/views/template-engines.md index 0c145cea..7928d63c 100644 --- a/src/guide/views/template-engines.md +++ b/src/guide/views/template-engines.md @@ -1,7 +1,8 @@ # Template engines Yii3 supports multiple template engines through a flexible renderer system. By default, PHP is used as the -template engine, but you can easily add support for other engines like Twig or create your own custom renderers. +template engine, but you can easily add support for other engines like Twig or [Blade](https://github.com/lee-to/yii-blade) +or create your own custom renderers. PHP templates were described in the "[View](view.md)" guide section. diff --git a/src/guide/views/view.md b/src/guide/views/view.md index c2e3ddea..b00cc2db 100644 --- a/src/guide/views/view.md +++ b/src/guide/views/view.md @@ -14,7 +14,8 @@ flowchart LR In Yii3 views are typically PHP files that contain presentation logic and HTML markup. The view system provides a flexible way to organize your presentation layer and supports features like layouts and partial views. Instead of -using plain PHP templates, you can leverage [one of the template engines such as Twig](template-engines.md). +using plain PHP templates, you can leverage one of the template engines such as [Twig](template-engines.md) +or [Blade](https://github.com/lee-to/yii-blade). ## Installation From 97d8d5d678411188d3db0387740f9774d28c7010 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Mon, 26 Jan 2026 11:21:04 +0300 Subject: [PATCH 2/3] Update src/guide/views/template-engines.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/guide/views/template-engines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/views/template-engines.md b/src/guide/views/template-engines.md index 7928d63c..35c430da 100644 --- a/src/guide/views/template-engines.md +++ b/src/guide/views/template-engines.md @@ -1,7 +1,7 @@ # Template engines Yii3 supports multiple template engines through a flexible renderer system. By default, PHP is used as the -template engine, but you can easily add support for other engines like Twig or [Blade](https://github.com/lee-to/yii-blade) +template engine, but you can easily add support for other engines like Twig and [Blade](https://github.com/lee-to/yii-blade), or create your own custom renderers. PHP templates were described in the "[View](view.md)" guide section. From 84ace32859f16ab1f4cdac2eb2f06c6f8061647c Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Mon, 26 Jan 2026 11:21:09 +0300 Subject: [PATCH 3/3] Update src/guide/views/view.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/guide/views/view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/views/view.md b/src/guide/views/view.md index b00cc2db..8fcb75d2 100644 --- a/src/guide/views/view.md +++ b/src/guide/views/view.md @@ -14,7 +14,7 @@ flowchart LR In Yii3 views are typically PHP files that contain presentation logic and HTML markup. The view system provides a flexible way to organize your presentation layer and supports features like layouts and partial views. Instead of -using plain PHP templates, you can leverage one of the template engines such as [Twig](template-engines.md) +using plain PHP templates, you can leverage one of the template engines such as [Twig](template-engines.md) or [Blade](https://github.com/lee-to/yii-blade). ## Installation