You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an extremely simple case - I'm trying to render "@parent" (a string with that content) into a Blade view that extends another view. It seems the input is interpreted as the @parent command instead, and inserts the parent section's contents.
I have an extremely simple case - I'm trying to render "@parent" (a string with that content) into a Blade view that extends another view. It seems the input is interpreted as the
@parent
command instead, and inserts the parent section's contents.Full code demonstrating the bug, along with a failing unit test, can be found here: https://github.com/mromnia/laravel-bug
To further explain what I'm doing, the parent view (called main) has this section:
The child looks like this:
Everything is fine as long as
$testInput
is not@parent
. If it is, this is what is getting rendered:Interestingly enough, I couldn't get it to work with
@include
or any other command.The text was updated successfully, but these errors were encountered: