@extends('admin.layouts.master') @section('title', 'View Zoom Meeting : '.$response['id']) @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('View Zoom Meeting') }} @endslot @slot('menu1') {{ __('Meetings') }} @endslot @slot('menu2') {{ __('Zoom Mettings ') }} @endslot @slot('menu3') {{ __('View Zoom Meeting') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
{{ __('View Meeting') }} : {{ $response['id'] }}
{{ __('adminstaticword.MeetingID') }} :

{{ $response['id'] }}

{{ __('adminstaticword.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

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

{{ $response['topic'] }}

{{ __('adminstaticword.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

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