Below are the details of the incentive request.
| Code | {{ $employeefee->code }} |
| Employee ID | {{ $employeefee->employee->fullname }} |
| Retail Amount | {{ number_format($employeefee->retail, 2) }} |
| Corporate Amount | {{ number_format($employeefee->corporate, 2) }} |
| Retail Note | {{ $employeefee->note_retail }} |
| Corporate Note | {{ $employeefee->note_corporate }} |
| Status | @if ($employeefee->status === 'A') Approved @elseif ($employeefee->status === 'P') Pending @elseif ($employeefee->status === 'R') Rejected @endif |
| Approved At | {{ $employeefee->approval_data ? \Carbon\Carbon::parse($employeefee->approval_data)->diffForHumans() : '-' }} |