@extends('layouts.default') @section('meta') Reports | Workday Time Clock @endsection @section('content')

{{ __('Reports') }}

{{ __('Report name') }} {{ __('Last Viewed') }}
{{ __('Employee List Report') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 1) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __('Employee Attendance Report') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 2) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __('Employee Leaves Report') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 3) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __('Employee Schedule Report') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 4) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __("Organizational Profile") }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 5) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __('Employee Birthdays') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 7) {{ $views->last_viewed }} @endif @endforeach @endisset
{{ __('User Accounts Report') }} @isset($lastviews) @foreach ($lastviews as $views) @if($views->report_id == 6) {{ $views->last_viewed }} @endif @endforeach @endisset
@endsection @section('scripts') @endsection