@extends('layouts.dashboard.managerapp') @section('title', 'Employee Salary Details') @section('styles') @endsection @section('content')

UEPL / Employee Salary Details

day, 00 month 0000
Salary Details List
@if (session('success'))
{{ session('success') }}
@endif
@foreach ($salaryDetails as $salary) @endforeach
Month & Year Employee ID Employee Name Basic & DA HRA Conveyance Washing Allowance Fixed Salary No. of Days Worked Leave Given Total Days for Salary Drawn Salary Incentive Hrs Incentive Rate Incentive Amount Attendance Bonus Gross Salary ESI PF PT Advance Deduction Net Salary Payment Mode Actions
{{ $salary->month_year }} {{ $salary->employee->employee_id ?? '' }} {{ $salary->employee->name ?? '' }} {{ $salary->basic_da }} {{ $salary->hra }} {{ $salary->conveyance }} {{ $salary->washing_allowance }} {{ $salary->fixed_salary }} {{ $salary->no_of_days_worked }} {{ $salary->leave_given }} {{ $salary->total_days_for_salary }} {{ $salary->drawn_salary }} {{ $salary->incentive_hrs }} {{ $salary->incentive_rate }} {{ $salary->incentive_amount }} {{ $salary->attendance_bonus }} {{ $salary->gross_salary }} {{ $salary->esi }} {{ $salary->pf }} {{ $salary->pt }} {{ $salary->advance_deduction }} {{ $salary->net_salary }} {{ $salary->payment_mode }} Edit
@csrf @method('DELETE')
@csrf
Employee Salary Details









@endsection @section('scripts') @endsection