@extends('layouts.app') @section('content')

Edit Materi

@csrf @method('PUT') @php // 1. Ambil nama materi saat ini dari database $currentName = old('name', $subject->name) ?? ''; $isSopMatch = false; $matchedSopValue = ''; $originalManualValue = $currentName; // 2. Logika Smart Auto-Sync: Cocokkan dengan data Master SOP if ($currentName) { // Pastikan variabel $sops sudah dikirim dari SubjectController@edit if(isset($sops)) { foreach($sops as $sop) { $fullname = $sop->nomor . ' - ' . $sop->judul; // Jika persis sama ATAU nama lama mengandung unsur nomor SOP if ($currentName === $fullname || strpos($currentName, $sop->nomor) !== false) { $isSopMatch = true; $matchedSopValue = $fullname; // Arahkan ke nama resmi $originalManualValue = ''; // Kosongkan form manual break; } } } } // 3. Tentukan mode radio button saat halaman dimuat $defaultType = ($currentName && !$isSopMatch) ? 'manual' : 'sop'; @endphp
@error('name')

{{ $message }}

@enderror
Batal
@endsection