Skip to content

Collection tag (blade): from <collection:xxx> to <statamic:collection:xxx> #1689

New issue

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

Merged
merged 1 commit into from
Jun 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions content/collections/tags/collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ Often times you'd like to have some extra markup around your list of entries, bu
```
::tab blade
```blade
<collection:blog
<statamic:collection:blog
as="posts"
>
<ul>
Expand All @@ -582,7 +582,7 @@ Often times you'd like to have some extra markup around your list of entries, bu
</li>
@endforeach
</ul>
</collection:blog>
</statamic:collection:blog>
```
::

Expand All @@ -609,13 +609,13 @@ featured_image: /img/totes-adorbs-kitteh.jpg

::tab blade
```blade
<collection:blog
<statamic:collection:blog
scope="post"
>
<div class="block">
<img src="{{ $post->featured_image }}">
</div>
</collection:blog>
</statamic:collection:blog>
```
::

Expand All @@ -634,15 +634,15 @@ You can also add your scope down into your [alias](#alias) loop. Yep, we thought
```
::tab blade
```blade
<collection:blog
<statamic:collection:blog
as="posts"
>
@foreach ($posts as $post)
<div class="block">
<img src="{{ $post->featured_image }}">
</div>
@endforeach
</collection:blog>
</statamic:collection:blog>
```
::

Expand Down