Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 4 Blade @include variable

I was trying to do include with Laravel blade, but the problem is it can't pass the variable. Here's my example code:

file_include.blade.php

<?php
  $myvar = "some text";

main.blade.php

@include('file_include')
{{$myvar}}

When I run the file, it return the error "Undefined variable: myvar". So, how can I pass the variable from the include file to the main file?

Thank you.

like image 389
user1995781 Avatar asked Jan 17 '14 09:01

user1995781


4 Answers

Why would you pass it from the include to the calling template? If you need it in the calling template, create it there, then pass it into the included template like this:

@include('view.name', array('some'=>'data'))

Above code snippet from http://laravel.com/docs/templates

like image 77
Kenny Avatar answered Nov 17 '22 08:11

Kenny


Unfortunately Laravel Blade engine doesn't support what you expected!.But a little traditional way you can achieve this!

SOLUTION 1 - without Laravel Blade Engine

Step a:

from

file_include.blade.php

to

file_include.php

Step b:

main.blade.php

<?php 
     include('app/views/file_include.php')
?>
{{$myvar}}

SOLUTION 2 with Laravel Blade Engine

routes.php

$data = array(
'data1'         => "one",
'data2'         => "two",
);

View::share('data', $data); 

Access $data array from Any View like this

{{ $data['data1'] }}

Output

one
like image 42
ErcanE Avatar answered Nov 17 '22 08:11

ErcanE


Blade is a Template Engine for Laravel. So try passing the value from the controller or you may define it in the routes.php for testing purposes.

@include is used to include sub-views.

like image 2
Shubhamoy Avatar answered Nov 17 '22 07:11

Shubhamoy


I think you must understand the variable scope in Laravel Blade template. Including a template using @include will inherit all variables from its parent view(the view where it was defined). But I guess you can't use your defined variables in your child view at the parent scope. If you want your variable be available to the parent try use View::share($variableName, $variableValue) it will be available to all views as expected.

like image 1
lukaserat Avatar answered Nov 17 '22 08:11

lukaserat