@php if(isset($event_id)){ $event=getter('event')->setLang(app()->getLocale())->condition('id',$event_id)->get(); } @endphp @extends('layouts.main',[ 'compact'=>'compact' ]) @if(isset($event) && isset($event->id)) @section('title') {{$event->label}} | {{env('APP_NAME')}} @endsection @section('content')
{{$event->label}}
{{--
--}} {{-- {{date_format(date_create($event->created_at),'d-M-Y')}}--}} {{--
--}}
{!! $event->description !!}
@if(count($event->artists)>0)
{{__('texts.artists')}}
@foreach($event->artists as $artist)
@if(isset($artist->name)) {{$artist->name}} @endif
@if(isset($artist->job)) {{$artist->job}} @endif
@include('includes.plus')
@if(isset($artist->description)) {{$artist->description}} @endif
@endforeach
@endif @if(count($event->gallery)) @endif @if(count($event->partners)>0)
{{__('texts.partners')}}
@foreach($event->partners as $partner)
@endforeach
@endif @if(isset($event->video))
{{__('texts.video')}}
{!! $event->video_description !!}
@endif
@endsection @endif