@extends('layouts.default') @section('content')
{{-- PANEL --}}
Showing {{ $shows->getFrom() }} - {{ $shows->getTo() }} of {{ $shows->getTotal() }} total shows
{{-- CONTENT --}} @if (count($shows)) @foreach ($shows as $show) @endforeach @else @endif
Name Venue Download
{{ $show }} {{ $show->venue }} @if (!empty($show->download_url)) {{ HTML::link($show->download_url, 'Download', ['target' => '_blank']) }} @endif
No Results
{{ $shows->links() }}
@stop