@extends('layouts.main') @section('page-title') {{ __('Dashboard') }} @endsection @section('page-breadcrumb') {{ __('Hrm') }} @endsection @push('css') @endpush @section('content') @if (session('status')) @endif
layer

{{ !empty($ActiveWorkspaceName) ? $ActiveWorkspaceName->name : 'WorkDo' }}

{{ __('Streamline HR with seamless tasks, smooth recruitment, and efficient payroll') }}

{{-- --}}
@if (Auth::user()->type == 'company')

{{ $countEmployee }}

{{ $Totalleaves }}

{{ $Totalevent }}

@else
{{ __('Mark Attandance ') }}{{ company_date_formate(date('Y-m-d')) }}

{{ __('My Office Time: ' . $officeTime['startTime'] . ' to ' . $officeTime['endTime']) }}

{{ Form::open(['url' => 'attendance/attendance', 'method' => 'post']) }} @if (empty($employeeAttendance) || $employeeAttendance->clock_out != '00:00:00') @else @endif {{ Form::close() }}
@if (!empty($employeeAttendance) && $employeeAttendance->clock_out == '00:00:00') {{ Form::model($employeeAttendance, ['route' => ['attendance.update', $employeeAttendance->id], 'method' => 'PUT']) }} @else @endif {{ Form::close() }}
@endif
@if (!in_array(Auth::user()->type, Auth::user()->not_emp_type))
{{ __("Holiday's ") }}
{{ __('Announcement List') }}
@forelse ($announcements as $announcement) @empty @include('layouts.nodatafound') @endforelse
{{ __('Title') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Description') }}
{{ $announcement->title }} {{ company_date_formate($announcement->start_date) }} {{ company_date_formate($announcement->end_date) }} {{ $announcement->description }}
@else
{{ __("Today's Not Clock In") }}
{{ __('Announcement List') }}
{{ __("Holiday's & Event's") }}
@endif
@stack('work-permit-dashboard') @endsection @push('scripts') @endpush