Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink authored Aug 29, 2024
1 parent ad3010a commit 9862e66
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,9 @@ $this->group('a')->each(fn() => /* */);
// Get all grouped properties, excluding non grouped
$this->group();

// Access group as an array or an object
$groupA = $this->group('a');
$groupA['foo'];
$groupA->foo;
// Access a group as an array or an object
$this->group('a')['foo'];
$this->group('a')->foo;
```

### Proxying Livewire Methods
Expand Down

0 comments on commit 9862e66

Please sign in to comment.