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

{{ csrf_field() }} {{-- Teaching Oriented Type Header --}}

@foreach($WATeachings as $w) @php $existing = $teachings ->where('teaching_name', $w->WATeaching_id) ->first(); @endphp {{-- Workload Arrangement Name --}} {{-- Unit --}} {{-- Value --}} @endforeach
Workload Arrangement Unit Value
{{ $w->WATeaching_title }} {{ $w->unit_name ?? '-' }}
@include('layouts.footer') @endsection