@extends('layouts.admin') @section('title') {{ __('Zoom Meeting') }} @endsection @php $logo = \App\Models\Utility::get_file('logo/'); $logo_path = \App\Models\Utility::get_file('/'); @endphp @section('action-button') @if (\Auth::user()->type == 'owner') @endif @endsection @section('content')
{{ __('TITLE') }} | {{ __('PROJECT') }} | @if (\Auth::user()->type == 'owner'){{ __('CLIENT') }} | {{ __('EMPLOYEE') }} | @endif{{ __('MEETING TIME') }} | {{ __('DURATION') }} | {{ __('JOIN URL') }} | {{ __('STATUS') }} | @if (\Auth::user()->type == 'owner'){{ __('Action') }} | @endif
---|---|---|---|---|---|---|---|---|
{{ $item->title }} | {{ !empty($item->projectName) ? $item->projectName->title : '' }} | @if (\Auth::user()->type == 'owner')
@if ($item->client_id != '0')
@foreach ($item->clients($item->client_id) as $projectClient)
|
@foreach ($item->users($item->user_id) as $projectUser)
|
@endif
{{ $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 | @if (\Auth::user()->type == 'owner'){!! Form::open([ 'method' => 'DELETE', 'route' => ['zoommeeting.destroy', $item->id], 'id' => 'delete-form-' . $item->id, ]) !!} {!! Form::close() !!} | @endif