@extends('admin.admin-layouts.master') @section('content')

{{ __('Attendance') }}

@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif

@if (isset($_GET['year']) and $_GET['year'] != null and isset($_GET['month']) and $_GET['month'] != null and isset($_GET['user_id']) and $_GET['user_id'] != null)

Attendance of {{ getUser($_GET['user_id'])->name }} from ( {{ $_GET['year'] }}, {{ getMonth($_GET['month']) }} )


@forelse ($days as $day) @if (EmpLeaveCheck($_GET['year'], $_GET['month'], $day['day'], $_GET['user_id'])) @else @endif @empty @endforelse
Day Attendance
{{ $day['day'] }} {{ $day['name'] }} @if (EmpAttendanceCheck($_GET['year'], $_GET['month'], $day['day'], $_GET['user_id'])) @endif
@endif
@endsection @push('style') @endpush @push('script') @endpush