{{__("attribute.More Options")}}

{{__("detail.Security and Stabilization")}}
{{__("words.Choose all the security and stability options that the car has.")}}

@php $securityOptions = !empty($carModel) ? $carModel->getSecurityProperty->pluck('car_property_id','car_property_id') :''; $securityDropDownOptions = !empty($carModel) ? $carModel->getSecurityProperty->pluck('car_property_id','car_property_value') :''; $multimediaOptions = !empty($carModel) ? $carModel->getMultimediaProperty->pluck('car_property_id','car_property_id') :''; $frontSeatOptions = !empty($carModel) ? $carModel->getFrontSeatProperty->pluck('car_property_id','car_property_id') :''; $backSeatOptions = !empty($carModel) ? $carModel->getBackSeatProperty->pluck('car_property_id','car_property_id') :''; $InteriorOptions = !empty($carModel) ? $carModel->getInteriorProperty->pluck('car_property_id','car_property_id') :''; $InteriorDropDownOptions = !empty($carModel) ? $carModel->getInteriorProperty->pluck('car_property_id','car_property_value') :''; $ExteriorOptions = !empty($carModel) ? $carModel->getExteriorProperty->pluck('car_property_id','car_property_id') :''; @endphp @foreach($carSecurityStabilizationOption as $carSecurityStabilizationKey => $carSecurityStabilizationValue) @if($carSecurityStabilizationValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_stability{{$carSecurityStabilizationKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_SECURITY}}][{{$carSecurityStabilizationValue->id}}]" value="1">
@elseif($carSecurityStabilizationValue->type == 2)
@php $typeData = $carSecurityStabilizationValue->type_value @endphp
@endif @endforeach

{{__("detail.Multimedia")}}
{{__("words.Select all the multimedia options the car has.")}}

@foreach($carMultiMediaOption as $carMultiMediaKey => $carMultiMediaValue) @if($carMultiMediaValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_multi_{{$carMultiMediaKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_MULTIMEDIA}}][{{$carMultiMediaValue->id}}]" value="1">
@endif @endforeach

{{__("detail.Interior Equipment")}}
{{__("words.Choose all the interior options that the car has")}}

@foreach($carInteriorOption as $carInteriorKey => $carInteriorValue) @if($carInteriorValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_Interior_{{$carInteriorKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_INTERIOR}}][{{$carInteriorValue->id}}]" value="1">
@elseif($carInteriorValue->type == 2)
@php $typeData =$carInteriorValue->type_value; @endphp
@endif @endforeach

{{__("detail.Front Seat")}}
{{__("words.Select all the front seat options that the car has.")}}

{{-- {{dd($carFrontSeatOption)}} --}} @foreach($carFrontSeatOption as $carFrontSeatKey => $carFrontSeatValue) @if($carFrontSeatValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_carfront_{{$carFrontSeatKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_FRONT_SEAT}}][{{$carFrontSeatValue->id}}]" value="1">
@endif @endforeach

{{__("detail.Rear Seat")}}
{{__("words.Choose all the rear seats options the car has.")}}

@foreach($carBackSeatOption as $carBackSeatKey => $carBackSeatValue) @if($carBackSeatValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_backseat_{{$carBackSeatKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_BACK_SEAT}}][{{$carBackSeatValue->id}}]" value="1">
@endif @endforeach

{{__("detail.Exterior Equipment")}}
{{__("words.Select all the exterior options that the car has.")}}

@foreach($carExteriorOption as $exteriorKey => $exteriorValue) @if($exteriorValue->type == 1)
id]) ? "checked" : ''}} id="checkbox_exterior_{{$exteriorKey}}" name="feature[{{\App\Models\CarDetail::FEATURE_EXTERIOR}}][{{$exteriorValue->id}}]" value="1">
@endif @endforeach