@extends('layouts.admin')
@section('page-title')
{{__('Manage Zoom-Meeting')}}
@endsection
@php
$setting = \App\Models\Utility::settings();
@endphp
@section('breadcrumb')
{{__('Dashboard')}}
{{__('Zoom Meeting')}}
@endsection
@section('action-btn')
@can('create zoom meeting')
@endcan
@endsection
@push('script-page')
@endpush
@section('content')
{{__('Mettings')}}
@foreach($calandar as $event)
@php
$month = date("m",strtotime($event['start']));
@endphp
@if($month == date('m'))
-
@endif
@endforeach
@endsection