@extends('hrms.layouts.base') @section('content')
@if(Auth::user()->isHR())

EMPLOYEE MANAGER

{{--

385

--}}
@endif @if(!Auth::user()->isHR()) @endif @if($events)

Latest   Events

@foreach (array_chunk($events, 3, true) as $results) @foreach($results as $event) @endforeach
@endforeach
@endif @if($meetings)

Latest    Meetings

@foreach (array_chunk($meetings, 3, true) as $results) @foreach($results as $meeting) @endforeach
@endforeach
@endif
@endsection