@extends('layouts.default') @section('content') {{ $title }}

This show has the following {{ count($item->plays) }} songs listed in our database.

{{ $item->dislaySetlist() }}
{{-- CONTENT --}}
Users that attended this show
@if (count($item->users)) @foreach ($item->users as $user)
{{ HTML::link($user->showLink(), $user->username) }}
@endforeach @else
No Results
@endif
{{ $add_to_shows_link }} @stop