@extends('layouts.master') @section('title', 'Employee Location') @section('action', 'Location Log') @section('main-content')
@include('admin.section.flash_message') @include('admin.employees.common.breadcrumb')
Employee Location Log Filter
@if(!isset(auth()->user()->branch_id))
@endif
@if($bsEnabled)
@else
@endif
{{ __('index.reset') }}
Location Logs
@forelse($logData as $userId => $logs) @php $user = $logs->first()->employee; // Get user details $date = $logs->first()->created_at; // Get user details @endphp @empty @endforelse
SN {{ __('index.employee_name') }} {{ __('index.date') }} {{ __('index.location') }}
{{ $loop->iteration }} {{ $user->name }} {{ \App\Helpers\AppHelper::formatDateForView($date) }} @if($logs->count() > 1) {{ $logs->count() }} Records @endif
@foreach($logs as $log) @endforeach
SN Time Location
{{ $loop->iteration }} {{ \App\Helpers\AttendanceHelper::changeTimeFormatForAttendanceAdminView(\App\Helpers\AppHelper::check24HoursTimeAppSetting(), $log->created_at) }} View Location

{{ __('index.no_records_found') }}

@endsection @section('scripts') @include('admin.attendance.common.filter_scripts') @endsection