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

UEPL | Salary Structure Master

@if(session('success')) @endif @if(session('error')) @endif
Employee Salary Structures
@foreach($structures as $st) @endforeach
Employee Basic & DA HRA Conveyance Washing Allow. Incentive/Hr Fixed Salary PF % ESI % PT %
{{ $st->employee->name ?? 'N/A' }}
{{ $st->employee->employee_id ?? '-' }}
{{ number_format($st->basic_da, 2) }} {{ number_format($st->hra, 2) }} {{ number_format($st->conveyance, 2) }} {{ number_format($st->washing_allowance, 2) }} {{ $st->incentive_per_hour ?? '-' }} {{ number_format($st->fixed_salary, 2) }} {{ $st->pf_percentage ?? '-' }}% {{ $st->esi_percentage ?? '-' }}% {{ $st->pt_percentage ?? '-' }}%
@endsection @section('scripts') @endsection