@extends('layouts.master') @section('title', 'Workload Arrangement for Administrative Position Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')
@yield('title')

{{ csrf_field() }} {{-- Position Header --}}

@foreach($Wadpositions as $w) @php $existing = $wpositions ->where('wposition_name', $w->Wadposition_id) ->first(); @endphp {{-- Workload Arrangement Name --}} {{-- Unit --}} {{-- Value --}} @endforeach
Workload Arrangement Unit Value
{{ $w->Wadposition_title }} @php $unit = $units->where('unit_id', $w->Wadposition_unit)->first(); @endphp {{ $unit->unit_name ?? '-' }}
@include('layouts.footer') @endsection