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
in template: <div>Show all @yield('list-label','inactive') records</div>
<div>Show all @yield('list-label','inactive') records</div>
in the inherited template, this doesn't work: @section('list-label','') as I ended up with <LF>@parentXYZABC<LF> before the opening tag.
@section('list-label','')
<LF>@parentXYZABC<LF>
I could use either a single space (which I didn't want) or this syntax: @section('list-label')@endsection
@section('list-label')@endsection
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in template:
<div>Show all @yield('list-label','inactive') records</div>
in the inherited template, this doesn't work:
@section('list-label','')
as I ended up with
<LF>@parentXYZABC<LF>
before the opening tag.I could use either a single space (which I didn't want) or this syntax:
@section('list-label')@endsection
The text was updated successfully, but these errors were encountered: