fixed rich text conponent

This commit is contained in:
Edward Yang 2023-01-31 09:08:29 +08:00
parent 9b484e03f2
commit ed31084759
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@
@endif
@if ($column['type'] == 'rich-text')
<x-admin-form-richtext
<x-admin-form-rich-text
:name="$column['name']"
:title="$column['label']"
:required="$column['required'] ? true : false"
@ -68,7 +68,7 @@
@if (isset($column['description']))
<div class="help-text font-size-12 lh-base">{{ $column['description'] }}</div>
@endif
</x-admin-form-richtext>
</x-admin-form-rich-text>
@endif
@endforeach