@extends('layouts.dashboard') @section('title', 'Team Reviews') @section('content')

Team Reviews — Month: {{ \Carbon\Carbon::parse($month)->format('F Y') }}

@if(session('success'))
{{ session('success') }}
@endif
@forelse($team as $emp) @php $r = $reviews[$emp->id] ?? null; @endphp @empty @endforelse
Employee Email Quality of Work Communication Ownership Team Collaboration Overall Rating Comments Action
{{ $emp->name }} {{ $emp->email }} {{ $r->quality_of_work ?? '-' }} {{ $r->communication ?? '-' }} {{ $r->ownership ?? '-' }} {{ $r->team_collaboration ?? '-' }} {{ $r->overall_rating ?? '-' }} {{ $r->comments ?? '-' }}
No active employees found in your team.
@endsection