@extends('layouts.app') @section('title', 'Hedef Raporu') @section('content')
Hedef Raporu
Aylık Hedef Gerçekleşme Trendi
Branş Bazlı Hedef Durumu
@php $branslar = [ ['ad' => 'Kasko', 'percent' => 105, 'color' => 'success'], ['ad' => 'Trafik', 'percent' => 92, 'color' => 'info'], ['ad' => 'Sağlık', 'percent' => 78, 'color' => 'warning'], ['ad' => 'Konut', 'percent' => 112, 'color' => 'success'], ['ad' => 'Ferdi Kaza', 'percent' => 45, 'color' => 'danger'], ]; @endphp
@foreach($branslar as $brans)
{{ $brans['ad'] }} %{{ $brans['percent'] }}
@endforeach
Satışçı Hedef Gerçekleşme Listesi
@php $mockTargets = [ ['name' => 'Mehmet Demir', 'target' => 150000, 'actual' => 162000, 'p' => 108, 'color' => 'success'], ['name' => 'Ayşe Kaya', 'target' => 120000, 'actual' => 114000, 'p' => 95, 'color' => 'info'], ['name' => 'Fatma Şahin', 'count' => 180000, 'target' => 180000, 'actual' => 140000, 'p' => 77, 'color' => 'warning'], ['name' => 'Ali Çelik', 'target' => 100000, 'actual' => 105000, 'p' => 105, 'color' => 'success'], ['name' => 'Zeynep Yıldız', 'target' => 200000, 'actual' => 230000, 'p' => 115, 'color' => 'success'], ]; @endphp @foreach($mockTargets as $t) @endforeach
Satışçı Hedef Tutar Gerçekleşen Tutar İlerleme Durum
{{ $t['name'] }} ₺{{ number_format($t['target'], 0, ',', '.') }} ₺{{ number_format($t['actual'], 0, ',', '.') }}
%{{ $t['p'] }}
@push('scripts') @endpush @endsection