@extends('admin/layouts.master') @section('title', 'View Zoom Meeting : '.$response['id']) @section('body')
{{ __('View Meeting') }} : {{ $response['id'] }}

Meeting ID : {{ $response['id'] }}


Meeting Topic : {{ $response['topic'] }}


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


Start Time :{{ isset($response['start_time']) ? date('d-m-Y | h:i:s A',strtotime($response['start_time'])) : "" }}


Meeting Contact Name : {{ $response['settings']['contact_name'] }}


Invite URL : {{ $response['join_url'] }}


Meeting Duration : {{ $response['duration'] }} min.


Other Meeting Settings :


Audio : {{ $response['settings']['audio'] == 'both' ? "Computer and Internet call" : $response['settings']['audio'] }}
Host Video : {{ $response['settings']['host_video'] == true ? "Enabled" : "Disabled"}}
Join before Host : {{ $response['settings']['join_before_host'] == true ? "Yes" : "No"}}
Join before Host : {{ $response['settings']['join_before_host'] == true ? "Yes" : "No"}}
Participant Video : {{ $response['settings']['participant_video']['join_before_host'] == true ? "Enabled" : "Disabled"}}
@endsection