@extends('admin.layouts.layouts') @section('title', 'Details | Employee Salary Entry') @section('content')
Records not found!
@else| Sr. | Employee | Code | Days | Gross Salary | Net Deduction | Net Salary |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $salary->employee->employee_name ?? '-' }} ({{ $salary->employee->employeeDesignation->name ?? '' }}) | {{ $salary->employee->employee_code ?? '-' }} | {{ $salary->days ?? 0 }} | {{ number_format($salary->gross_salary ?? 0, 2) }} | {{ number_format($salary->net_deduction ?? 0, 2) }} | {{ number_format($salary->net_salary ?? 0, 2) }} |