@extends('layouts.admin') @section('page-title') {{ __('Calendar') }} @endsection @section('links') @if (\Auth::guard('client')->check()) @else @endif @if (\Auth::guard('client')->check()) @else @endif @endsection @section('action-button') @auth('web') @if (isset($currentWorkspace) && $currentWorkspace->creater->id == Auth::id()) @endif @endauth @auth('client') @endauth @endsection @section('content')
{{ __('Calendar') }}
@if ($currentWorkspace->is_googlecalendar_enabled == 'on') @endif

Meetings

    @php $date = Carbon\Carbon::now()->format('m'); $date1 = Carbon\Carbon::now()->format('y'); $this_month_meeting = App\Models\ZoomMeeting::get(); @endphp @foreach ($meetings as $meeting) @php $month = date('m', strtotime($meeting->start_date)); $year = date('y', strtotime($meeting->start_date)); @endphp @if ($date == $month && $date1 == $year)
  • {{ $meeting->title }}
    {{ $meeting->start_date }}
  • @endif @endforeach
@endsection @if ($currentWorkspace) @push('css-page') @endpush @push('scripts') @endpush @endif