@extends('admin.layout.master') @section('content')

Employee New Joining

@include('payroll.includes.printAndExcel')
@if(count($employees) >0)
@php($i=1) @foreach ($employees->chunk(25) as $chunk_data)

New Joining Report

Date : {{date('d-m-Y',strtotime($date_from))}} -{{date('d-m-Y',strtotime($date_to))}}

{{$chunk_data->first()->fetch_department->name}}

@foreach ($chunk_data as $data) @endforeach
#SL ID No Name Designation Joining Date
{{$i++}} {{$data->emp_code}} {{$data->emp_name}} {{$data->fetch_designation->name}} {{date('d-m-Y',strtotime($data->joining_date))}}
@endforeach
@else @if(request()->get('search') !=null)

No Data Found

@endif @endif @endsection @section('script') @include('payroll.hrm_script') @endsection