@php // fetch checkin time in attendance box use App\Models\Attendance; $getAtt = Attendance::where('id', session()->get('checkin_status'))->first(); if($getAtt){ $prntAtt = $getAtt->checkin; } else{ $prntAtt = "0"; } @endphp @extends('portal_pages.layouts.master') @section('content') @section('title', 'Dashboard') {{-- employee html --}}

Welcome, {{ Auth::user()->name }}

{{ date('d F Y g:i:A') }}

@if (session()->has('success'))
@if (is_array(session('success')))
    @foreach (session('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session('success') }} @endif
@endif
Timesheet {{ date('d F Y') }}
Punch In at

{{-- {{ $getAtTime->status}} --}}

{{$prntAtt}}
{{-- --}}
@csrf @if (Session::has('checkin_status')) @else @endif
{{--

Break

1.21 hrs

Overtime

3 hrs
--}}
Statistics

Today 3.45 / 8 hrs

This Week 28 / 40 hrs

This Month 90 / 160 hrs

Remaining 90 / 160 hrs

Overtime 4

Today Activity
  • Punch In at

    10.00 AM.

  • Punch Out at

    11.00 AM.

  • Punch In at

    11.15 AM.

  • Punch Out at

    1.30 PM.

  • Punch In at

    2.00 PM.

  • Punch Out at

    7.30 PM.

# Date Punch In Punch Out Production Break Overtime
1 19 Feb 2019 10 AM 7 PM 9 hrs 1 hrs 0
2 20 Feb 2019 10 AM 7 PM 9 hrs 1 hrs 0

Today

Tomorrow

2 people will be away tomorrow

Next seven days

2 people are going to be away

Your first day is going to be on Thursday

Projects

71

Total Tasks

14

Pending Tasks

2

Total Projects

Your Leave

4.5

Leave Taken

12

Remaining

Your time off allowance

5.0 Hours

Approved

15 Hours

Remaining

Upcoming Holiday

Mon 20 May 2019 - Ramzan

@endsection