Calculate Attrition Rate
Formula:
(Number of Attrition / ((Op. Balance + Cl. Balance) / 2)) * 100
{{-- Form --}}
{{-- Result --}}
@if (isset($attritionRate) || isset($error))
Result:
@if (isset($attritionRate))
Attrition Rate: {{ $attritionRate }}%
@elseif (isset($error))
{{ $error }}
@endif
@endif
{{-- Validation Errors --}}
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@include('layouts.footer')