Skip to content

Commit 810b43d

Browse files
committed
Update
1 parent 6efecfe commit 810b43d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rows/clickable-rows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ Now the blank space of the row should have its action, while your links go to th
5656

5757
## Working with `wire:click` on rows
5858

59-
You can add the row-level livewire clicks by utilising the following method.
59+
You can add the row-level Livewire clicks by utilizing the following method.
6060

6161
```php
6262
public function getTableRowWireClick($row): ?string
6363
{
6464
return "doSomething(" . $row->id . ")";
6565
}
6666

67-
public function doSomething()
67+
public function doSomething($id)
6868
{
6969
// ...
7070
}

0 commit comments

Comments
 (0)