From 7f7a0cf03558a89178465ed5f98c3e475fbb3a77 Mon Sep 17 00:00:00 2001 From: Alexandru Bucur Date: Fri, 4 May 2012 18:47:51 +0300 Subject: [PATCH] Added a small example on how to call a function in blade :P --- laravel/documentation/views/templating.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/laravel/documentation/views/templating.md b/laravel/documentation/views/templating.md index e88d3792..4a45fce0 100644 --- a/laravel/documentation/views/templating.md +++ b/laravel/documentation/views/templating.md @@ -64,6 +64,10 @@ Blade makes writing your views pure bliss. To create a blade view, simply name y #### Echoing a variable using Blade: Hello, {{$name}}. + +#### Calling an echo on a function using Blade: + + {{ Asset::styles() }} #### Rendering a view: