Blade (templating engine)

From Wiki @ Karl Jones dot com
Revision as of 07:54, 17 August 2016 by Karl Jones (Talk | contribs) (Created page with "'''Blade''' is a web template system for Laravel. == Description == Blade combines one or more templates with a data model to produce resulting views, doing that by...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Blade is a web template system for Laravel.

Description

Blade combines one or more templates with a data model to produce resulting views, doing that by transpiling the templates into cached PHP code for improved performance.

Blade also provides a set of its own control structures such as conditional statements and loops, which are internally mapped to their PHP counterparts.

Furthermore, Laravel services may be called from Blade templates, and the templating engine itself can be extended with custom directives.

See also