KPI Data KPI Data
@if (session('message'))
× {{ session('message') }}.
@endif @php $kpi = App\Models\KpiEntry::where('user_id', Auth::user()->id)->first(); // dd($kpi) @endphp @isset($kpi)
{{-- supervisor_assign Table goes here --}}
Staff Name: {{ Auth::user()->name }}
Designation: {{ Auth::user()->designation->name ?? '' }}
Department: {{ Auth::user()->department->name ?? '' }}
Supervisor {{ Auth::user()->supervisor->name ?? '' }}
Period {{ $kpi->kpi_period }}
user image
@php $kpi_name = App\Models\Kpi::where('id', $kpi->kpi_id)->first()->name; $kra_name = App\Models\Kra::where('id', $kpi->kra_id)->first()->name; @endphp @if ($kpi->kpi_id == 1) @php $kpi_name = App\Models\Kpi::where('id', $kpi->kpi_id)->first()->name; $kra_name = App\Models\Kra::where('id', $kpi->kra_id)->first()->name; @endphp @endif
Key Responsible Areas (KRA) Key Performance Indicators (KPI) Weight of KPIs Bench Mark/ Target Unit Achievement Sources of Information Score (Out of 100) Weightage Value Justification
{{ $kra_name }} {{ $kpi_name }} {{ $kpi->weight_of_kpis }} {{ $kpi->bench_mark_target }} % {{ $kpi->achivement }} {{ $kpi->sources_of_informations }} {{ $kpi->score }} {{ $kpi->weight_value }} {{ $kpi->justification }}
{{ $kpi->weight_of_kpis }} {{ $kpi->weight_value }}
{{ $kra_name }} {{ $kpi_name }} {{ $kpi->weight_of_kpis }} {{ $kpi->bench_mark_target }} % {{ $kpi->achivement }} {{ $kpi->sources_of_informations }} {{ $kpi->score }} {{ $kpi->weight_value }} {{ $kpi->justification }}
{{ $kpi->weight_of_kpis }} {{ $kpi->weight_value }}
Total Score {{ $kpi->weight_of_kpis }} {{ $kpi->weight_value }}
Staff Signature & Comment Supervisor Signature & Comment Next Level Supervisor Signature & Comment
@endisset