@extends('layouts.master') @section('title','Employee Salary') @section('action','List') @section('main-content')
@include('admin.section.flash_message') @include('admin.payroll.employeeSalary.common.breadcrumb')
{{-- --}} @forelse($employeeLists as $key => $value) {{-- --}} @empty @endforelse
# Employee Name Marital StatusGross Salary({{\App\Helpers\AppHelper::getCompanyPaymentCurrencySymbol()}}.)Salary Cycle Salary Group Action
{{++$key}} {{ucfirst($value->employee_name)}} {{ ucfirst($value->marital_status) }}{{ number_format($value->salary) }} {{ ucfirst($value->salary_group_name) }}

No records found!

@endsection @section('scripts') @include('admin.payroll.employeeSalary.common.scripts') @endsection