@php $titles = $data['sections'] ?? []; $descriptions = $data['descriptions'] ?? []; $isEdit = isset($data['sections']) && isset($data['descriptions']); @endphp
Click here to Redirect to   PNR EXPERT
Sections
@php $sections = []; if ($isEdit) { foreach ($titles as $i => $title) { $sections[] = [ 'title' => $title, 'description' => $descriptions[$i] ?? '', ]; } } else { $sections = [ [ 'title' => 'Note', 'description' => '', ] ]; } @endphp @foreach ($sections as $index => $section)
@endforeach