@can('liveevent.create')
add {{__('adminstaticwords.CreateLiveEvent')}}
@endcan
@can('liveevent.delete')
delete {{__('adminstaticwords.DeleteSelected')}}
@endcan
@if(isset($liveevent) && count($liveevent) > 0)
@foreach($liveevent as $item)
@endforeach
@endif
@if($item->thumbnail != NULL)
@elseif($item->poster != NULL)
@else
@endif
{{$item->title}}
{{__('Start Time')}}
{{isset($item->start_time) && $item->start_time != NULL ? date('Y/m/d, h:i:s a',strtotime($item->start_time)) : '-' }}
{{__('End Time')}}
{{isset($item->end_time) && $item->end_time != NULL ? date('Y/m/d, h:i:s a',strtotime($item->end_time)) : '-' }}
{{__('Organized By')}}
{{isset($item->organized_by) && $item->organized_by ? $item->organized_by : '-' }}
{{__('Description')}}
{{isset($item->description) && $item->description ? str_limit($item->description,50) : '-' }}
{{__('LiveEvent Emotions')}}
{!! $liveevent->appends(request()->query())->links() !!}
@else