@extends('layouts.previews.intercontinental')
@php
use App\Enums\ElementType;
use App\Enums\PlanListDefault;
use App\Enums\CustomElementType;
@endphp
@section('content')
@foreach ($elements as $item)
@if (fieldPropertyValue('status', $item))
@if (fieldPropertyValue('element_type', $item) == ElementType::DEFAULT)
@switch(fieldPropertyValue('default_element_type', $item))
@case(PlanListDefault::PLAN)
@include('preview.intercontinental.commons.plan')
@break
@endswitch
@endif
@endif
@endforeach
@endsection
@push('styles')