haidubogdan / netbeans-php-blade-plugin

Netbeans 18+ module plugin for php blade template files
Apache License 2.0
25 stars 4 forks source link

Missing `@when`, `@bool` blade directives #72

Closed angeljqv closed 1 month ago

angeljqv commented 1 month ago

@when could be useful for conditionally printing things in general

<input name="phone" @when($isRequired, 'required') />

@bool allow boolean values to be printed directly into strings or used in object construction.

<script>
    let config = {
        isActive: @bool($isActive),
        hasAccess: @bool($hasAccess)
    };
</script>
haidubogdan commented 1 month ago

Interesting, this is new.

I didn't find these in their library.

Maybe it's a third party plugin which I'm missing?

angeljqv commented 1 month ago