31 lines
926 B
PHP
31 lines
926 B
PHP
@php
|
|
$fieldWrapperView = $getFieldWrapperView();
|
|
$extraAttributes = $getExtraAttributes();
|
|
$id = $getId();
|
|
@endphp
|
|
|
|
<x-dynamic-component :component="$fieldWrapperView" :field="$field">
|
|
@if (filled($id) || filled($extraAttributes))
|
|
{!! '<div' !!}
|
|
{{-- Avoid formatting issues with unclosed elements --}}
|
|
{{
|
|
$attributes
|
|
->merge([
|
|
'id' => $id,
|
|
], escape: false)
|
|
->merge($extraAttributes, escape: false)
|
|
}}
|
|
>
|
|
@endif
|
|
|
|
@if (filled($key = $getLivewireKey()))
|
|
@livewire($getComponent(), $getComponentProperties(), key($key))
|
|
@else
|
|
@livewire($getComponent(), $getComponentProperties())
|
|
@endif
|
|
@if (filled($id) || filled($extraAttributes))
|
|
{!! '</div>' !!}
|
|
{{-- Avoid formatting issues with unclosed elements --}}
|
|
@endif
|
|
</x-dynamic-component>
|