@extends('layouts.master') @section('title',__('index.salary_components')) @section('sub_page',__('index.lists')) @section('page') {{ __('index.salary_components') }} @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.payrollSetting.common.breadcrumb')
@include('admin.payrollSetting.common.setting_menu')
@can('salary_component') {{ __('index.add_salary_component') }} @endcan
@forelse($salaryComponentLists as $key => $value) @empty @endforelse
# Name {{ __('index.component_type') }} {{ __('index.component_value') }} {{ __('index.value_type') }} {{ __('index.status') }} {{ __('index.action') }}
{{++$key}} {{ucfirst($value->name)}} {{ ucfirst($value->component_type) }} {{ ucfirst(\App\Models\SalaryComponent::VALUE_TYPE[$value->value_type])}} {{ $value->annual_component_value }}{{$value->value_type == 'fixed' ? '': '%'}}
    @can('salary_component')
  • @endcan

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

@endsection @section('scripts') @endsection