@extends('layouts.default') @section('title') Events @stop @section('top') @stop @section('content')

@if (count($events) == 0) There are currently no events. @else Here you may find our events: @endif

@auth('edit')
@endauth
@foreach($events as $event)

{!! $event->title !!}

{!! $event->date->format(Config::get('date.php_display_format')) !!}

Show Event @auth('edit') Edit Event Delete Event @endauth


@endforeach {!! $links !!} @stop @section('bottom') @auth('edit') @include('events.deletes') @endauth @stop