@extends('layouts.master') @section('title', __('index.salary_group')) @section('sub_page', 'Lists') @section('page') {{ __('index.salary_group') }} @endsection @section('styles') @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.payrollSetting.common.breadcrumb')
@include('admin.payrollSetting.common.setting_menu')
@can('salary_group') @endcan
@forelse($salaryGroupLists as $key => $value) @empty @endforelse
# {{ __('index.name') }} {{ __('index.salary_components') }} {{ __('index.is_active') }} {{ __('index.action') }}
{{ ++$key }} {{ ucfirst($value->name) }}
{{ __('index.employee_count') }} : {{ $value->group_employees_count }}
    @foreach($value?->salaryComponents as $key => $componentValue)
  • {{ ucwords($componentValue?->name) }}
  • @endforeach
    @can('salary_group')
  • @endcan

{{ __('index.no_records_found') }}

@endsection @section('scripts') @include('admin.payrollSetting.salaryGroup.common.scripts') @endsection