{{-- CKEditor Component Usage: Props: - name: Unique identifier for editor (required) - value: Initial content (optional) - height: Editor height in pixels (default: 400) - wire:model: Livewire property to sync with --}} @props([ 'value' => '', 'name' => 'editor_' . uniqid(), 'height' => 400 ])