@extends('layouts.admin') @section('page-title') {{ __('Zoom Meeting') }} @endsection @section('links') @if (\Auth::guard('client')->check()) @else @endif @endsection @php // $logo=\App\Models\Utility::get_file('users-avatar/'); $logo = \App\Models\Utility::get_file('avatars/'); @endphp @push('css-page') @endpush @section('action-button') @auth('web') @if (isset($currentWorkspace) && $currentWorkspace->creater->id == Auth::id()) @endif @endauth @auth('client') @endauth @endsection @section('content')
@if (Auth::user()->type == 'user' && $currentWorkspace->creater->id == Auth::user()->id) @endif @if (Auth::user()->type == 'user' && $currentWorkspace->creater->id == Auth::user()->id) @endif @forelse ($meetings as $item) @if (Auth::user()->type == 'user' && $currentWorkspace->creater->id == Auth::user()->id) @endif @if (Auth::user()->type == 'user' && $currentWorkspace->creater->id == Auth::user()->id) @endif @endforeach
{{ __('Title') }} {{ __('Project') }} {{ __('Members') }} {{ __('Client') }} {{ __('Meeting Time') }} {{ __('Duration') }} {{ __('Join URL') }} {{ __('Status') }} {{ __('Action') }}
{{ $item->title }} {{ $item->project_name }} {{ $item->start_date }} {{ $item->duration }} {{ __('Minutes') }} @if ($item->created_by == \Auth::user()->id && $item->checkDateTime()) {{ __('Start meeting') }} @elseif($item->checkDateTime()) {{ __('Join meeting') }} @else - @endif @if ($item->checkDateTime()) @if ($item->status == 'waiting') {{ ucfirst($item->status) }} @else {{ ucfirst($item->status) }} @endif @else {{ __('End') }} @endif
@endsection @push('scripts') @endpush