@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('Employee Attendance'), 'class' => 'col-lg-7' ])
{{__('Employee Attendance')}}
@foreach ($employeesAttendance as $attendance) @endforeach
{{__('Image')}} {{__('Employee Name')}} {{__('Year-Month')}} {{__('Present Days')}} {{__('Absent Days')}} {{__('Total Days')}} {{__('Today')}}
{{ $attendance['employee']->name }} {{ $attendance['month'] }} {{ $attendance['presence'] }} {{ $attendance['absent_days'] }} {{ $attendance['total_days'] }}
@endsection @section('js') @endsection