@extends('dashboard.layouts.app') @section('content') @include('components.alert')
{{-- Check-in Form --}}
@if(!is_null($attendance?->check_in))

Checked in at

{{ \Carbon\Carbon::parse($attendance->check_in)->format('h:i A') }}
@else @csrf
Welcome,
{{ auth()->user()->full_name }}
You need to check in before continuing.
@endif
@if(!is_null($attendance?->check_in)) {{-- Checkout / Logout --}}
@endif
@endsection @push('styles') {{-- Select2 CDN --}} @endpush @push('scripts') @endpush