We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Formatting an @component directive with passed in data is inconsistent with doing the same with an @include directive, as seen below.
@component
@include
Code example derived from tests:
@component('path.to.component', [ 'title' => 'My title', 'description' => '', 'header' => [ 'transparent' => true, ], 'footer' => [ 'hide' => true, ], ]) <div> some content </div> @endcomponent @include('path.to.component', [ 'title' => 'My title', 'description' => '', 'header' => [ 'transparent' => true, ], 'footer' => [ 'hide' => true, ], ])
I am sending a PR to fix the issue.
The text was updated successfully, but these errors were encountered:
fix: consistent formatting for @component (#772)
a3d3aaa
Fixes #771
Released https://github.com/shufo/blade-formatter/releases/tag/v1.32.4 with this fix.
Sorry, something went wrong.
shufo
hjanos1
Successfully merging a pull request may close this issue.
Formatting an
@component
directive with passed in data is inconsistent with doing the same with an@include
directive, as seen below.Code example derived from tests:
Current Behavior
Expected Behavior
Possible Solution
I am sending a PR to fix the issue.
The text was updated successfully, but these errors were encountered: