@extends('layouts.layout') @section('content')

Overview

{{$todaydate}}
@if(in_array("dashboard", $emp_previllages))

Attendance

@endif

Upcoming Holidays & Events

    @if($calendar_data!="" && count($calendar_data)>0) @foreach($calendar_data as $calendar_list) @php $cal_date=$calendar_list->CAL_DATE; $cal_date1=$calendar_list->CAL_DATE->format('d-M-Y'); $cal_date_day=$calendar_list->CAL_DATE->format('d'); $cal_date_month=$calendar_list->CAL_DATE->format('M'); @endphp
  • {{$cal_date_day}}
    {{$cal_date_month}}
    {{$calendar_list->CAL_EVENT_NAME}}
    {{$cal_date1}}
  • @endforeach @endif
@endsection