summaryrefslogtreecommitdiff
path: root/resources/views/components/dynamic-wrapper.blade.php
blob: 8593f3a9aa6ae7992c2a706176db82f7c0cd62c9 (plain)
1
2
3
4
5
6
7
8
9
@use('Illuminate\View\ComponentAttributeBag')
@props(['component'])
@php
$componentName = $component[0];
$attributes = new ComponentAttributeBag($component[1] ?? []);
@endphp
<x-dynamic-component :component="$componentName" :$attributes>
    {{ $slot }}
</x-dynamic-component>