@php use App\Enums\MultiLangMode; $langText = $lang == MultiLangMode::DEFAULT ? 'ja' : Str::slug(MultiLangMode::getDescription($lang)); $modalName = 'bookNow'; if (!empty($roomInfo)) { $modalName .= '-' . $roomInfo['id']; unset($roomInfo['plan_information']); unset($roomInfo['room_information_details']); } if (!empty($planInfo)) { $modalName .= '-' . $planInfo['id']; unset($planInfo['room_information']); unset($planInfo['linking_tags']); } @endphp