@php
$sections = [];
if ($isEdit) {
foreach ($titles as $i => $title) {
$sections[] = [
'title' => $title,
'description' => $descriptions[$i] ?? '',
];
}
} else {
$sections = [
[
'title' => 'Cancellation Policy',
'description' =>
'Cancellation for this service is 24 hours prior to the scheduled time. Cancellations not communicated within this time frame (or no-shows), will result in the charge of the full amount for this service.',
],
[
'title' => 'Flight Crew',
'description' => '',
],
];
}
@endphp
@foreach ($sections as $index => $section)