JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Event') }} @endsection @php $setting = App\Models\Utility::settings(); @endphp @section('breadcrumb') @endsection @section('action-button') @can('Create Event') @endcan @endsection @section('content')
{{ __('Calendar') }}
{{--
--}} @if (isset($setting['is_enabled']) && $setting['is_enabled'] == 'on') @endif {{--
--}}

{{ __('Upcoming Events') }}

  • @if (!$events->isEmpty()) @forelse ($current_month_event as $event)
    {{ $event->title }}

    {{ __('Start Date : ') }} {{ \Auth::user()->dateFormat($event->start_date) }}
    {{ __('End Date : ') }} {{ \Auth::user()->dateFormat($event->end_date) }}

    @empty
    {{ __('There is no event in this month') }}
    @endforelse @else
    {{ __('There is no event in this month') }}
    @endif
@endsection @push('script-page') @endpush