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

{{$employee->name}}

@if(@$attendanceData->out_time)

Punched-out @ {{date('h:i A', strtotime(@$attendanceData->out_time))}}

@else @if(@$attendanceData->in_time)

Punched-In @ {{date('h:i A', strtotime(@$attendanceData->in_time))}}

@endif @endif
User Timeline
    @if(@$attendanceData->in_time)
  • PUNCH-IN {{date('h:i A', strtotime(@$attendanceData->in_time))}}

    Location: {{@$attendanceData->in_address['geo_address']}}

  • @endif @foreach($checkInOut as $value)
  • CHECK IN {{date('h:i A', strtotime($value->in_time))}}

    Location:{{$value->in_address['geo_address']}}

    Remarks:{{$value->remarks}}

  • @endforeach @if(@$attendanceData->out_time)
  • PUNCH-OUT {{date('h:i A', strtotime(@$attendanceData->out_time))}}

    Location: {{@$attendanceData->out_address['geo_address']}}

  • @endif
@endsection @push('footer-script') @endpush