@extends('frontend.layouts.app') @section('title') Performance @endsection @section('content')
@if(!empty($live)) @foreach ($live as $item)
@if($item['artist_image'] !== NULL) profile pic @else profile pic @endif
{{date('dS. D, F, Y', strtotime($item['performance_start_date'])) . " | " . $item['performance_start_time']}} {{translate("Live")}}

{{translate(ucwords($item['performance_title']))}}

{{translate("Artist/Group:")}} {{translate(ucwords($item['artist_stage_name']))}}

{{translate(ucwords("Venue/Area:" . $item['venue_name']))}}

{{translate(ucwords(mb_strimwidth("Address: " . $item['venue_name'], 0, 75, "......")))}}

@if(!empty($item['performance_description']))

{{translate(ucwords(mb_strimwidth($item['performance_description'], 0, 90, "........")))}}

@else

{{translate('Description Not Available')}}

@endif

{{translate(ucwords($item['performance_category_name'] . ', ' . $item['artist_name'] . ', ' . $item['artist_surname'] . ', ' . $item['venue_name'] . ', ' . $item['artist_stage_name']))}}

@if(in_array($item['performance_id'], $user_fav)) @else @endif @if($item['performance_featured'] == 1)
{{translate("Featured")}}
@endif
{{$item['performance_like_count']}} Followers
@endforeach @endif @if(!empty($non_live)) @foreach ($non_live as $item)
@if($item['artist_image'] !== NULL) profile pic @else profile pic @endif
{{date('dS. D, F, Y', strtotime($item['performance_start_date'])) . " | " . $item['performance_start_time']}}

{{translate(ucwords($item['performance_title']))}}

{{translate("Artist/Group:")}} {{translate(ucwords($item['artist_stage_name']))}}

{{translate(ucwords("Venue/Area:" . $item['venue_name']))}}

{{translate(ucwords(mb_strimwidth("Address: " . $item['venue_name'], 0, 75, "......")))}}

@if(!empty($item['performance_description']))

{{translate(ucwords(mb_strimwidth($item['performance_description'], 0, 90, "........")))}}

@else

{{translate('Description Not Available')}}

@endif

{{translate(ucwords($item['performance_category_name'] . ', ' . $item['artist_name'] . ', ' . $item['artist_surname'] . ', ' . $item['venue_name'] . ', ' . $item['artist_stage_name']))}}

@if(in_array($item['performance_id'], $user_fav)) @else @endif @if($item['performance_featured'] == 1)
{{translate("Featured")}}
@endif
{{$item['performance_like_count']}} Followers
@endforeach @endif
{{-- Share Modal --}} @endsection @section('script') @endsection