@extends('layouts.app') @section('title') List of Employee Report @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

List of Employees Report


@if(Session::has('success')) @endif
@foreach($HrmEmployees as $HrmEmployee) @if($HrmEmployee->company_detail->contract_type =='full_time') @else @endif @endforeach
Code No: Name: Department: Designation: Gender: Address: Phone No: Date of Joining: Date of Birth: Contract Type : Basic Salary:
{{$HrmEmployee->company_detail->employee_code}} {{$HrmEmployee->name}} {{$HrmEmployee->company_detail->department->department_name}} {{$HrmEmployee->company_detail->designation->name}} {{$HrmEmployee->gender}} {{$HrmEmployee->pemanent_address}} {{$HrmEmployee->phone_no}} {{date("d-m-Y", strtotime($HrmEmployee->company_detail ? $HrmEmployee->company_detail->date_of_joining : ''))}} {{date("d-m-Y", strtotime($HrmEmployee->dob ))}}Full TimeContract{{number_format($HrmEmployee->company_detail->monthly_salary)}}
@stop @section('js') @stop