@extends('layouts.app') @section('title') All Employees @stop @section('breadcrumb')
Home
All Employees Attandance
@stop @section('css')
@stop @section('content')
All Employees
Add Attendance
Download
Download Fill Attendence And Then Upload.
{{csrf_field()}}
Upload Attendance
(File, Excel)
Upload
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@php $couter = 1; @endphp @foreach($HrmEmployees as $HrmEmployee ) @endforeach
#
Name
Designation
Date Of Joining
Percentage
Action
{{$couter++}}
{{$HrmEmployee->name}}
{{$HrmEmployee->company_detail->designation->name}}
{{date('d-F-Y',strtotime($HrmEmployee->company_detail->date_of_joining))}}
{{\App\HrmAttendance::getMonthlyAttandancePer($HrmEmployee->id , $HrmEmployee->company_detail->date_of_joining)}}%
{{-- add Attndance --}}
Add Attendance
x
The field labels marked with * are required input fields.
{{csrf_field()}}
Employee
*
Select Employee
@foreach($HrmEmployees as $Employee)
{{ $Employee->name }}
@endforeach
Date
*
Status
*
Absent
Present
Leave
Leave Type
*
Medical Leave
Anual Leave
Special Leave
Weekend Leave
Other Leave
CheckIn
*
CheckOut
*
submit
@stop @section('js') {{-- --}} {{-- --}} @stop