@extends('layouts.app') @section('title') All Employees @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

All Employees

{{csrf_field()}}

@if(Session::has('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 --}} @stop @section('js') {{-- --}} {{-- --}} @stop