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