@extends('layouts.app', ['title' => 'Dashboard']) @section('content') @if (session('msg'))

{{ session('msg') }}

@endif
@include('layouts.breadcrumb', ['crumbs' => [ucfirst(Request::segment(1)), ucfirst(Request::segment(2))]])> {{ strtoupper(Request::segment(3)) }}

Heute,den {{ Carbon\Carbon::now()->format('d.m.Y') }}

{{-- für Anwesenheit --}}
@foreach ($employees as $item) @if ($HrTimeRecordingToday->where('fk_employee_id', $item->employee_id)->count()) {{-- {{ $item->employee_id }} --}} {{ $item->first_name }} {{ $item->last_name }} @endif @endforeach
{{-- für Anwesenheit --}}
@foreach ($employees as $item) @if ($HrSickRequest->where('fk_employee_id', $item->employee_id)->count()) {{-- {{ $item->employee_id }} --}} {{ $item->first_name }} {{ $item->last_name }} @endif @endforeach
{{--
--}}
{{-- für Anwesenheit --}}
@foreach ($employees as $item) @if ($HrVacationRequest->where('fk_employee_id', $item->employee_id)->count()) {{-- {{ $item->employee_id }} --}} {{ $item->first_name }} {{ $item->last_name }} @endif @endforeach
{{--
--}}
{{-- für container --}}
@endsection