@extends('layouts.admin') @section('title',__('adminstaticwords.AllLiveEvents')) @section('content')
@can('liveevent.create') add {{__('adminstaticwords.CreateLiveEvent')}} @endcan @can('liveevent.delete') delete {{__('adminstaticwords.DeleteSelected')}} @endcan
@if(isset($liveevent) && count($liveevent) > 0) @foreach($liveevent as $item)
@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')}}
  • desktop_mac
  • @can('liveevent.edit')
  • mode_edit
  • @endcan @can('liveevent.delete')
  • delete
  • @endcan
@endforeach
{!! $liveevent->appends(request()->query())->links() !!}
@else
{{__("Let's start :)")}}
{{__('Get Started by creating a liveevent ! All of your liveevents will be displayed on this page.')}}
@endif
@endsection