@extends('admin.layouts.master') @section('title', 'View Zoom Meeting : '.$response['id']) @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('All Zoom Meetings') }} : {{ $response['id'] }}
{{ __('Meeting ID') }} :

{{ $response['id'] }}

{{ __('Meeting') }} {{__('Type')}} :

@if($response['type'] == '2') {{__('Scheduled Meeting')}} @elseif($response['type'] == '3') {{__('Recurring Meeting with no fixed time')}} @else {{__('Recurring Meeting with fixed time')}} @endif

{{ __('Meeting') }} {{__('Topic')}} :

{{ $response['topic'] }}

{{ __('Meeting') }} {{__('Agenda')}} :

{{ isset($response['agenda']) ? $response['agenda'] : "" }}

{{__('Start Time')}} :
@php // create a $dt object with the UTC timezone $dt = new DateTime(optional($response)['start_time'], new DateTimeZone('UTC')); $timezone = $response['timezone']; // change the timezone of the object without changing its time $dt->setTimezone(new DateTimeZone($timezone)); @endphp

{{ optional($response)['start_time'] ? $dt->format('d-m-Y | h:i A') : "" }}

{{__('Meeting Contact Name')}} :

{{ isset($response['settings']['contact_name']) ? $response['settings']['contact_name'] : $response['host_email'] }}

{{__('Meeting Duration')}} :

{{ isset($response['duration']) ? $response['duration'] : "" }} {{__('min')}}

{{__('Invite URL')}} :

{{ $response['join_url'] }}

{{__('Other Meeting Settings')}} :

{{__('Audio')}} : {{ isset($response['settings']['audio']) == 'both' ? "Computer and Internet call" : isset($response['settings']['audio']) }}

{{__('Host Video')}} : {{ isset($response['settings']['host_video']) == true ? "Enabled" : "Disabled"}}

{{__('Join before Host')}} : {{ isset($response['settings']['join_before_host']) == true ? "Yes" : "No"}}

{{__('participant Video')}} : {{ isset($response['settings']['participant_video']['join_before_host']) == true ? "Enabled" : "Disabled"}}

@endsection