@extends('layouts.master') @section('title') {{$event->name}} @endsection @section('content')

{{trans_choice('general.overview',2)}}

{{trans_choice('general.name',1)}} {{$event->name}}
{{trans_choice('general.date',1)}} {{trans_choice('general.starts_on',1)}} : {{$event->start_date}} @if(!empty($event->start_time)) ({{$event->start_time}}) @endif
{{trans_choice('general.ends_on',1)}} : {{$event->end_date}} @if(!empty($event->end_time)) ({{$event->end_time}}) @endif
@if($event->recurring==1) {{ trans('general.recurring') }} @endif
{{trans_choice('general.cost',1)}} @if(!empty($event->cost) && $event->cost!=0 ) {{$event->cost}} @else {{trans_choice('general.free',1)}} @endif
{{trans_choice('general.calendar',1)}} @if(!empty($event->calendar) ) {{$event->calendar->name}} @else {{trans_choice('general.main',1)}} @endif
{{trans_choice('general.location',1)}} @if(!empty($event->location) ) {{$event->location->name}} @else {{trans_choice('general.none',1)}} @endif
{{trans_choice('general.featured_image',1)}} @if(!empty($event->featured_image)) @endif
{{trans_choice('general.note',2)}} {!! $event->notes !!}
{{trans_choice('general.created_at',1)}} {{$event->created_at}}
@if(!empty($event->latitude) && !empty($event->longitude))
@endif
@endsection @section('footer-scripts') @endsection