@extends('admin/layouts.master') @section('title', 'View Google Meet Meeting : '.$response['id']) @section('body')
{{ __('View Meeting') }} : {{ $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 :{{ isset($response['start_time']) ? date('d-m-Y | h:i:s A',strtotime($response['start_time'])) : "" }}


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


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


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"}}
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