Skip to content

1.33.0

Compare
Choose a tag to compare
@robsontenorio robsontenorio released this 17 Jun 01:05
· 167 commits to main since this release
6179ca6

What's Changed

Breaking changes

Table

BEFORE ($this->loop->index)

<x-table ...>
    @scope('cell_name', $user)
        ({{  $this->loop->index }}) {{ $user->name }}
    @endscope
</x-table>

AFTER ($loop->index)

<x-table ...>
    @scope('cell_name', $user)
        ({{  $loop->index }}) {{ $user->name }}
    @endscope
</x-table>

New Contributors

Full Changelog: 1.32.1...1.33.0