try view composer or global view
View::composer("yourview", function($view)
{
$view->with('banner', View::make('partials.randomBanner', array('category'=>'something'));
});
in your view,
{{ $banner }}
view composer: http://laravel.com/docs/responses#view-composers
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community