@extends('layouts.master') @section('title', 'Workload Arrangement Table for Mission Based Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title') @yield('title') {{ csrf_field() }} {{-- Mission Based Type Header --}} Mission Based Type Workload Arrangement Unit @foreach($WAMissions as $w) @php $existing = $missions ->where('mission_name', $w->WAMission_id) ->first(); @endphp {{-- แสดงเสมอ --}} {{ $w->WAMission_title }} {{-- Unit --}} {{ $w->unit_name ?? '-' }} @endforeach @include('layouts.footer') @endsection