@extends('layouts.master') @section('styles') @endsection @section('content')

Report Management

Export Excel

KPI Evaluation Report

@foreach($data as $item) @endforeach
Region Area/Zone Territory City Distributor SR Name Joining Date Sales (In Unit) Sales (In Gross Value) Sale Calls Other KPIs
Booking Execution Exec% Spot Sales Counter Sales Target Achievement % Booking Execution Exec% Spot Sales Counter Sales Target Achievement % Plan Actual Pro Prod-Plan % Drop Size (Units) Avg Bill Value Avg SKUs per Bill Avg Time/ Shop Avg Market hours/ Day
{{ $item->region}} {{ $item->area}} {{ $item->territory}} {{ $item->city}} {{ $item->distributor_name}} {{ $item->employee_name}} {{ date('Y-m-d', strtotime($item->joining_date))}} {{ number_format($item->booked_unit,2)}} {{ number_format($item->exec_unit,2)}} {{ number_format($item->exec_unit == 0 || $item->booked_unit == 0 ? 0 : ($item->exec_unit / $item->booked_unit)*100,2)}}% {{ number_format($item->spot_unit,2)}} {{ number_format($item->counter_unit,2)}} {{ number_format($item->target,2)}} {{ number_format($item->exec_unit == 0 || $item->target == 0 ? 0 : ($item->exec_unit / $item->target)*100,2)}}% {{ number_format($item->booked_val,2)}} {{ number_format($item->exec_val,2)}} {{ number_format($item->exec_val == 0 || $item->booked_val == 0 ? 0 : ($item->exec_val / $item->booked_val)*100,2)}}% {{ number_format($item->spot_val,2)}} {{ number_format($item->counter_val,2)}} {{ number_format($item->target_value,2)}} {{ number_format($item->exec_val == 0 || $item->target_value == 0 ? 0 : ($item->exec_val / $item->target_value)*100,2)}}% {{ number_format($item->planed_shops)}} {{ number_format($item->visited_shops)}} {{ number_format($item->productive_shops)}} {{ number_format($item->planed_shops == 0 || $item->productive_shops == 0 ? 0 : ($item->planed_shops / $item->productive_shops)*100,2)}}% {{ number_format($item->avg_drop_size,2)}} {{ number_format($item->avg_bill_value,2)}} {{ number_format($item->avg_sku_bill,2)}} {{ $item->time_per_shop}} {{ $item->avg_market_hours}}
@endsection @section('scripts') @endsection