|
{{ config('settings.company_name') }} {{ config('settings.address_1') }} {{ config('settings.address_2') }} {{ config('settings.city') }} |
{{ $extra['voucher_type'] }}{{ $extra['sub_heading'] }} |
@if ($extra['from'] && $extra['to'])
From: {{ date(config('settings.date_format'), strtotime($extra['from'])) }} To: {{ date(config('settings.date_format'), strtotime($extra['to'])) }} @else{{ 'Upto ' . date(config('settings.date_format'), strtotime(!empty($extra['to']) ? $extra['to'] :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) . ' %' ?? '-' }} |