I also noticed that the formatter added spaces between the {{ and the -- part of the {{-- Blade comment syntax when a comment is added inside an HTML tag/Blade component.
This also caused a server error to break the part of the code:
Hereby the original code:
<x-filament::button
outlined
color="secondary"
{{-- Do not include statePath as parameter to close-modal, otherwise the media picker will update the selected values --}}
x-on:click="$dispatch('close-modal', {id: 'media-library-picker'})"
>
Text
</x-filament::button>
I also noticed that the formatter added spaces between the
{{
and the--
part of the{{--
Blade comment syntax when a comment is added inside an HTML tag/Blade component.This also caused a server error to break the part of the code:
Hereby the original code:
Thanks!