### Laravel Version 12.32.5 ### PHP Version 8.2.29 ### Database Driver & Version _No response_ ### Description When using `@pushIf` in a Blade template with `Str::startsWith()`, a syntax error occurs: ```blade syntax error, unexpected token ":" ``` This happens even when the arguments to `Str::startsWith()` are valid strings. Using the `str()` helper with `startsWith()` works fine. ### Steps To Reproduce Get error: ```blade @pushIf(Str::startsWith('abc', 'a'), 'body-end') // ... @endPushIf ```