@extends('layouts.layoutMaster') @section('title', __('Web Attendance')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/sweetalert2/sweetalert2.js' ]) @endsection @section('page-style') @endsection @section('content')
{{-- Breadcrumb --}} {{-- Clock and Date Display --}}
{{ now()->format('l, F d, Y') }}
{{ now()->format('h:i:s A') }}
{{ auth()->user()->shift?->name ?? __('Default Shift') }} {{ auth()->user()->code }} - {{ auth()->user()->getFullName() }} {{-- @can('hrcore.multiple-check-in') --}} {{-- PERMISSION TEMPORARILY DISABLED --}} {{ __('Multiple Check-ins Enabled') }} {{-- @endcan --}}
{{-- Status Cards --}}
{{ __('Check In') }}
{{ __('Not checked in') }}
{{ __('Check Out') }}
{{ __('Not checked out') }}
{{ __('Working Hours') }}
0h 0m
{{-- Main Action Card --}}
{{ __('Loading...') }}

{{ __('Ready to check in') }}

{{-- Today's Activity --}}
{{ __("Today's Activity Log") }}

{{ __('No activity recorded today') }}

{{-- Page Data --}} @endsection @section('page-script') @vite(['resources/assets/js/app/hrcore-web-attendance.js']) @endsection