@extends('layouts.default') @section('content')

{{ $title }}

{{ $total_played_percent }}% of all shows in our database were played at this venue.
{{ $venue->name }} is listed in our database on the following {{ count($shows) }} show{{ DeadStats::s($shows) }}:


@if (empty($years))
No Results
@else @foreach ($years as $year => $shows) @foreach ($shows as $show) @endforeach
{{ $year }} # Songs
{{ $show->start_date }} {{ count($show->plays) }}
@endforeach @endif @stop