@extends('app-new') @push('head-script') @endpush @push('content-header') @endpush @section('content')

{{trans('employee/employee.employee')}} {{trans('employee/employee.attendance_summary')}}

@foreach($data as $attendance) @endforeach
@foreach($attendanceLogs as $log) @if($log->photo)
your image

{{date('d M Y H:i:s', strtotime($log->created_at))}}

@endif @endforeach

{{$employee->name}}

{{trans('master/master.employee_code')}}:

{{$employee->employee_code}}

{{trans('master/master.manager')}}:

{{$employee->hod ? $employee->hod->name : '-'}}

{{trans('master/master.location')}}:

@if(count($employee->locations)>0) @foreach($employee->locations as $location)

{{$location->geo_address}} @if($location->geo_latitude && $location->geo_longitude) @endif

@endforeach @else --- @endif

{{trans('master/master.email_id')}}:

{{$employee->email}}

{{trans('master/master.contact_no')}}:

{{$employee->mobile}}

{{trans('common/filter.shifts')}}:

{{ isset($currentShift) && isset($currentShift->shift) ? $currentShift->shift->name.' ('.$startTime.' - '.$endTime.')' : '-'}}
@endsection @push('footer-script') @endpush