@extends('layouts.admin')
@section('page-title')
{{ __('Calendar') }}
@endsection
@section('links')
@if (\Auth::guard('client')->check())
{{ __('Home') }}
@else
{{ __('Home') }}
@endif
@if (\Auth::guard('client')->check())
{{ __('Zoom Meeting') }}
@else
{{ __('Zoom Meeting') }}
@endif
{{ __('Calendar') }}
@endsection
@section('action-button')
@auth('web')
@if (isset($currentWorkspace) && $currentWorkspace->creater->id == Auth::id())
@endif
@endauth
@auth('client')
@endauth
@endsection
@section('content')
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