dbfdg @extends('layouts.admin') @section('page-title') {{__('Task Calendar')}} @endsection @push('css-page') @endpush @php $setting = \App\Models\Utility::settings(); @endphp @section('breadcrumb') @endsection @section('content')
{{ __('Calendar') }}
@if (isset($setting['google_calendar_enable']) && $setting['google_calendar_enable'] == 'on') @endif

{{__('Tasks')}}

    @forelse($arrTasks as $task)
  • {{$task['title']}}
    {{$task['start']}} to {{$task['end']}}
  • @empty

    {{__('No Data Found')}}

    @endforelse
@endsection @push('script-page') @endpush