@extends('layouts.app', ['path' => 'payroll.structures']) @section('title', 'Edit Payroll Structure - HRMS') @section('content') @can('payroll_structures.update')
@include('partials.new_alerts')
Edit Payroll Structure
@csrf @method('POST')
{{-- --}} Payroll Items
@if (empty($payItems))
Warning: No pay items are available. You cannot add new pay items to this structure. Please contact your administrator to add pay items first.
@endif
@if (isset($payStructure['pay_items']) && count($payStructure['pay_items']) > 0) @foreach ($payStructure['pay_items'] as $payItem)
{{ ucfirst($payItem['type'] ?? '') }}
@endforeach @else

No pay items added yet. Click "New" to add your first pay item.

@endif
@endcan @endsection @push('scripts') @endpush