@extends('hr.hr-master') @section('title', 'Payscale Configuration') @section('content')

Add Payscale Configuration

@if(session('success')) @endif
@csrf
@if($payscales->isNotEmpty())

List of Payscale Configurations

@foreach($payscales as $payscale) @endforeach
ID Component Name Calculation Type Value Created At
{{ $payscale->id }} {{ $payscale->component_name }} {{ $payscale->calculation_type }} {{ number_format($payscale->value, 2) }} {{ $payscale->created_at->format('Y-m-d') }}
@else
No payscale configurations found
@endif
@endsection