@extends('layouts.backend.app') @section('content')

@if($type == 'live')Live @elseif($type == 'upcoming')Upcoming @else Schduled @endif{{ __('Meeting List') }}

@if(!empty($main_data)) @foreach($main_data['meetings'] as $value) @if(isset($value['start_time'])) @else @endif @if(isset($value['start_time'])) @else @endif @endforeach @endif
{{ __('Title') }} {{ __('Live Class') }} {{ __('Status') }} {{ __('Duration') }} {{ __('Date') }} {{ __('Start Time') }} {{ __('Action') }}
{{ $value['topic'] }} {{ $value['id'] }} @if($type == 'upcoming') upcoming @elseif($type == 'live') live @else scheduled @endif {{ $value['duration'] }} minutes @php $main_date = str_replace("T", " ", $value['start_time']); $final_date = substr($main_date, 0,-4); @endphp {{ Carbon\Carbon::parse($final_date)->isoFormat('ll') }} null{{ Carbon\Carbon::parse($final_date)->isoFormat('LT') }}null @if($type == 'live') {{ __('Join Live') }} @else {{ __('Start Live') }} @endif
{{ __('Title') }} {{ __('Live Class') }} {{ __('Status') }} {{ __('Duration') }} {{ __('Date') }} {{ __('Start Time') }} {{ __('Action') }}
@if(!empty($main_data)) @endif
@endsection