{{ config('settings.company_name')}} | ||||||
{{ config('settings.address_1')}}, {{ config('settings.address_2')}}, {{ config('settings.city')}} |
{{$heading}} | ||||||
@if($search_by['from'] && $search_by['to']) From: {{ $transaction->date_format($search_by['from']) }} To: {{ $transaction->date_format($search_by['to']) }} @else {{ 'Upto ' .$transaction->date_format(now()) }} @endif |
S. No. | Recovery Agent | Month | {{--Due Sales {{$transaction->systemSettingCurrency()}} | --}}Target {{$transaction->systemSettingCurrency()}} | Achieved {{$transaction->systemSettingCurrency()}} | Percentage (%) |
---|---|---|---|---|---|---|
{{++$key}} | {{ $row->name }} | {{ date('F', mktime(0, 0, 0, $row->month, 10)) }} | {{--{{ $transaction->convert_money_format($row->due_amounts) }} | --}}{{ $transaction->convert_money_format($row->target) }} | {{ $transaction->convert_money_format($row->task_amounts) }} | @php $percentage = 0; if (!empty($row->target) && !empty($row->task_amounts)) { # code... $percentage = ($row->task_amounts / $row->target) * 100; } @endphp {{ round($percentage) . ' %' ?? '-' }} |