@extends('layouts.master') @section('title') Upcoming Gigs @stop @section('content')
@foreach($gigs as $gig) @endforeach
Date Time Location About Cost Ticket Link
{{ $gig->date }} {{ $gig->time }} {{ $gig->location }} {{ $gig->about }} {{ $gig->cost }} @if ($gig->ticketlink) Ticket Link @else No ticket link @endif
@if($gigs->isEmpty())
No bookings, check back soon!
@endif {{ $gigs->links() }}
@stop