@extends('layouts.user') @section('title', __('hr.attendance_sheet')) @section('page_title', __('hr.attendance_sheet')) @section('breadcrumb', __('hr.hr_attendance_sheet')) @section('content')
{{-- Filter --}}
{{ __('hr.reset') }}
{{-- Employee List --}}

{{ __('hr.employee_attendance_sheet') }}

{{ __('hr.monthly_attendance_summary_view') }}

{{ __('hr.total') }}: {{ $employees->total() }}
@forelse($employees as $employee) @empty @endforelse
{{ __('hr.employee') }} {{ __('hr.code') }} {{ __('hr.phone') }} {{ __('hr.type') }} {{ __('hr.action') }}
{{ $employee->name }}
{{ $employee->employee_code ?: __('hr.dash') }} {{ $employee->phone ?: __('hr.dash') }} {{ $employee->employee_type === 'daily_roz' ? __('hr.daily_roz') : __('hr.monthly') }} {{ __('hr.view_sheet') }}
{{ __('hr.no_employee_found') }}
@if($employees->hasPages())
{{ $employees->links() }}
@endif
@endsection