+1 vote
in Laravel by
What is the templating engine used in Laravel?

1 Answer

0 votes
by

The templating engine used in Laravel is Blade. The blade gives the ability to use its mustache-like syntax with the plain PHP and gets compiled into plain PHP and cached until any other change happens in the blade file. The blade file has .blade.php extension.

...