@extends('layouts.master') @section('title', 'Workload Arrangement Table for Regular Faculty Members Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title') Home Employee Contract Contract Type @yield('title') @yield('title') {{ csrf_field() }} {{-- Contract Type Header --}} Contract Type Workload Arrangement Unit Value @foreach($warrangements as $w) @php $existing = $regulars ->where('regular_name', $w->WArrangement_id) ->first(); @endphp {{-- Workload Arrangement Name --}} {{ $w->WArrangement_title }} {{-- Unit --}} {{ $w->unit_name ?? '-' }} {{-- Value --}} @endforeach Save @include('layouts.footer') @endsection