KPI ({{ request()->query('code') }})

@can('update_kpiscore', App\Models\KpiScore::class) @if(auth()->user()->can('view_any_kpiscore')) Edit KPI @endif @endcan

KPI (Key Performance Indicators)

{{-- Desktop --}} {{-- Mobile KPI --}}
@forelse ($indicators as $indicator)

{{ $indicator->name }}

{{ $indicator->category->name ?? '-' }}

Bobot : {{ number_format($indicator->weight, 0) }}% Target : {{ number_format($indicator->target, 0) }}% Aktual : {{ number_format($indicator->nilaicapaian * 20, 0) }}% Skor Capaian : {{ $indicator->nilaicapaian ?? '-' }} Nilai Tertimbang : {{ number_format($indicator->nilaitertimbang, 2) }}
@empty

{{ __('form.No-KPI-Indicator') }}

@endforelse {{-- Subtotal mobile --}}
Total Bobot : {{ number_format($totalWeight, 0) }}% Sub Total : {{ number_format($totalnilaitertimbang, 2) }} {{ __('form.Performance-Portion') }} : {{ number_format($performancePortion, 2) }}

{{ __('form.KPI-Potencies') }}

{{-- Desktop Potensi --}} {{-- Mobile Potensi --}}
@forelse ($potencies as $potency)

{{ $potency->name }}

Bobot : {{ $potency->weight }} Target : {{ number_format($potency->target, 0) }}% Aktual : {{ number_format($potency->nilaicapaianPotency * 20, 0) }}% Skor Capaian : {{ $potency->nilaicapaianPotency ?? '-' }} Nilai Tertimbang : {{ number_format($potency->nilaitertimbangPotency, 2) }}
@empty

{{ __('form.No-KPI-Potency') }}

@endforelse {{-- Summary mobile --}}
Total Bobot : {{ number_format($totalWeightPotency, 0) }}% Sub Total : {{ number_format($totalnilaitertimbangPotency, 2) }} {{ __('form.Potency-Portion') }} : {{ number_format($performancePortionPotency, 2) }}
{{-- Final score mobile --}}

{{ __('form.Final-Score') }}

{{ number_format($finalScore, 2) }}%

Total: {{ number_format($TotalScoreNilaiTertimbang, 2) }}