JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Zoom Metting') }} @endsection @section('breadcrumb') @endsection @section('action-button') @can('Create Zoom meeting') @endcan @endsection @section('content')
{{--
--}}
@php $logo = \App\Models\Utility::get_file('uploads/avatar/'); @endphp @foreach ($ZoomMeetings as $ZoomMeeting) @endforeach
{{ __('Title') }} {{ __('Meeting Time') }} {{ __('Duration') }} {{ __('User') }} {{ __('Join URL') }} {{ __('Status') }} {{ __('Action') }}
{{ $ZoomMeeting->title }} {{ $ZoomMeeting->start_date }} {{ $ZoomMeeting->duration }} {{ __(' Minute') }}
@foreach ($ZoomMeeting->users($ZoomMeeting->user_id) as $projectUser) imageavatar) src="{{ $logo . '/' . $projectUser->avatar }}" @else src="{{ $logo . 'avatar.png' }}" @endif class="rounded-circle " width="25" height="25"> @endforeach
@if ($ZoomMeeting->created_by == \Auth::user()->id && $ZoomMeeting->checkDateTime())

{{ __('Start meeting') }}

@elseif($ZoomMeeting->checkDateTime())

{{ __('Join meeting') }}

@else - @endif
@if ($ZoomMeeting->checkDateTime()) @if ($ZoomMeeting->status == 'waiting') {{ ucfirst($ZoomMeeting->status) }} @else {{ ucfirst($ZoomMeeting->status) }} @endif @else {{ __('End') }} @endif @can('Show Zoom meeting') @endcan @can('Delete Zoom meeting')
{!! Form::open([ 'method' => 'DELETE', 'route' => ['zoom-meeting.destroy', $ZoomMeeting->id], 'id' => 'delete-form-' . $ZoomMeeting->id, ]) !!}
@endcan
@endsection