@extends('admin/layouts.master') @section('title', 'View Google Meet Meeting : '.$response['id']) @section('maincontent')
{{ __('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