Stillat / blade-parser-typescript

A Laravel Blade parser, compiler, and static analyzer written in TypeScript.
https://stillat.com
MIT License
88 stars 2 forks source link

`@guest` with `@else` and Blade component #37

Closed zepfietje closed 1 year ago

zepfietje commented 1 year ago

Same for @if.

@guest
    <x-foo></x-foo>
@else
    <x-foo></x-foo>
@endguest
@guest
        <x-foo></x-foo>
@else
        <x-foo></x-foo>
@endguest

Doesn't happen when using div instead of x-foo.

JohnathonKoster commented 1 year ago

Should be in 1.1.15 🙂

JohnathonKoster commented 1 year ago

Also super curious how things have been in general with this latest release (1.1.17 -- did a few updates since the last comment) 🤞🤞

zepfietje commented 1 year ago

Nice! Will report some final issues I found.