Regular Options
{{-- =========================================================
I. Contract Type (1-60)
========================================================= --}}
{{-- Contract Type --}}
{{-- Contract No --}}
{{-- =====================================================
REGULAR WORKLOAD TABLE
====================================================== --}}
|
No.
|
Workload Arrangement
|
Unit
|
@foreach ($contracts as $item)
{{ $item->contract_type }}
|
@endforeach
@foreach ($WArrangements as $index => $w)
|
{{ $index + 1 }}
|
{{ $w->WArrangement_title }}
|
{{ $w->unit_name ?? '-' }}
|
@foreach ($contracts as $item)
@php
$regularValue = $regulars
->where(
'regular_name',
$w->WArrangement_id
)
->where(
'regular_contract_id',
$item->contract_id
)
->first();
@endphp
{{ $regularValue->regular_value ?? '-' }}
|
@endforeach
@endforeach
{{-- =========================================================
II. Contract Range (after 60)
========================================================= --}}
{{-- Contract Range --}}
{{-- Contract No --}}
{{-- =====================================================
AGE RANGE WORKLOAD TABLE
====================================================== --}}
|
No.
|
Workload Arrangement
|
Unit
|
@foreach ($age_type as $item)
{{ $item->age_type_name }}
|
@endforeach
@foreach ($WAages as $index => $w)
|
{{ $index + 1 }}
|
{{ $w->WAage_title }}
|
{{ $w->unit_name ?? '-' }}
|
@foreach ($age_type as $item)
@php
$wageValue = $wages
->where(
'wage_name',
$w->WAage_id
)
->where(
'wage_type_id',
$item->age_type_id
)
->first();
@endphp
{{ $wageValue->wage_value ?? '-' }}
|
@endforeach
@endforeach
{{-- ================= TEACHING ================= --}}
{{-- =========================================================
TEACHING ORIENTED
========================================================= --}}