@extends('layouts.master') @section('title','Salary Components') @section('sub_page','Lists') @section('page') Salary components @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.payrollSetting.common.breadcrumb')
@include('admin.payrollSetting.common.setting_menu')
@can('add_salary_component') Add Salary Component @endcan
@forelse($salaryComponentLists as $key => $value) @empty @endforelse
# Name Component Type Component Value Value Type Status Action
{{++$key}} {{ucfirst($value->name)}} {{(\App\Models\SalaryComponent::COMPONENT_TYPE[$value->component_type])}} {{(\App\Models\SalaryComponent::VALUE_TYPE[$value->value_type])}} {{ $value->component_value_monthly }}{{$value->value_type == 'fixed' ? '': '%'}}
    @can('edit_salary_component')
  • @endcan @can('delete_salary_component')
  • @endcan

No records found!

@endsection @section('scripts') @endsection