hi friends, I have in (my Laravel ver.4) application view "view02.blade.php" which it can call via URL (route):
http://localhost/.../SomeRoute02
it is code in "route.php":
Route::get('SomeRoute02','SomeController@SomeFunc02');
and code in "SomeController" is:
public function SomeFunc02() {
...
$ThatArray=DB::select('...
$ThatOtherArray=...
return View::make('view02', array('SomeArray'=>$ThatArray, 'SomeOtherArray'=>$ThatOtherArray));
}
and I have similar view "view01.blade.php" which it can call via URL (route):
http://localhost/.../SomeRoute01
Code in "route.php" is similar also:
Route::get('SomeRoute01','SomeController@SomeFunc01');
as well as code in "SomeController":
...
return View::make('view01', array('AnotherArray'=>$AnotherArray));
}
Until now I call both views separately (via their URLs), but now I need call only one view and displays information of both.
And my question is: how can I include view02 into view01? Let view01 has own content as well as view02 has own?
Hi David,
I think I have a project in a Laravel 4 version.
I use subviews frequently when paging things and then using ajax to replace the complete subview part.
Here you can see the controller, which inserts a page of the item list into the index view as a subview. I used blade templating (@section), but you can ignore that part. The important thing is that you can pass the subview(s) as variable(s) into the containing view and then cast them to string(s). I the provided examples the cast is implicit and occurs after
{{ $list }}
is expanded to
echo $list
.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community