Browse Source

Zeige Vorschlagenden auf Index-Seite.

Daniel 10 years ago
parent
commit
33d8121d5b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/views/index.blade.php

+ 2 - 2
app/views/index.blade.php

@@ -49,7 +49,7 @@
 			
 			<div class="list-group">
 				@foreach ($vorgeschlagen as $film)
-					{{ link_to_route('film', $film->name, array($film->id), array('class' => 'list-group-item'))}}
+					<a href="{{ route('film', array($film->id)); }}" class="list-group-item">{{$film->name}} <small>({{ $film->besitzer->name }})</small></a>
 				@endforeach	
 			</div>
 		</div>
@@ -104,4 +104,4 @@
 	</div>
 </div>
 
-@stop
+@stop