@extends('hr.hr-master')
@section('title', 'Salary Components')
@section('content')
Salary Components
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
List of Components
| ID |
Name |
@foreach($components as $component)
| {{ $component->id }} |
{{ $component->name }} |
@endforeach
@endsection