Tam olarak ne istiyorsun anlamadım ama;
Routes.php
View::composer('layouts.sidebar', function ($view) {
$view->platforms = Platform::orderBy('platform', 'asc')->get();
});
bu kod ile sitenin sidebarın'da platformları listeliyorum. böylece her sayfada çıkıyor bu liste.
sidebar.php
@foreach($platforms as $platform)
<li><a href="{{URL::to('platform/'.$platform->slug)}}" title="{{$platform->platform}} Tools">{{$platform->platform}}</a></li>
@endforeach