/home/techb158/ileadtechnology.com/resources/views/zoom
Edit: /home/techb158/ileadtechnology.com/resources/views/zoom/show.blade.php (4420B)
@extends('admin/layouts.master')
@section('title', 'View Zoom Meeting : '.$response['id'])
@section('body')
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'] }}
Meeting Duration : {{ isset($response['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