Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Pida's avatar
Level 7

Recommend me a beautifier for Atom (esp. for Blade)

I'm using atom-beautify right now. It's working fine for PHP and even for Blade files, but there's a problem when using Vue, it's something about the use of @ to indicate that Blade should not parse something. For example, this:

<input type='checkbox'
       name='every_week'
       value='1'
       @if (old('every_week'))
            checked
       @endif
>

becomes this:

<input type='checkbox'
       name='every_week'
       value='1'
       <blade
       if /> (old('every_week'))
checked
@endif
>

Is there an alternative solution (different beautifier or maybe even a different setting)? Unibeautify might become a better solution, but there's no support for Blade yet https://unibeautify.com/

0 likes
1 reply

Please or to participate in this conversation.