Skip to content

Commit 22b4f62

Browse files
committed
Updates
1 parent 03d7902 commit 22b4f62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/columns/available-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you would like more control over the sort behavior of a specific column, you
1919
```php
2020
Column::make(__('Address'))
2121
->sortable(
22-
fn(Builder $query, string $direction) => $query->orderBy() //...
22+
fn(Builder $query, string $direction) => $query->orderBy()
2323
),
2424
```
2525

docs/columns/other-column-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Boolean columns are good if you have a column type that is a true/false, or 0/1
1010
For example:
1111

1212
```php
13-
BooleanColumn::make('Active');
13+
BooleanColumn::make('Active')
1414
```
1515

1616
Would yield:
@@ -23,7 +23,7 @@ If you don't want to use the default view and icons you can set your own:
2323

2424
```php
2525
BooleanColumn::make('Active')
26-
->view('my.active.view');
26+
->view('my.active.view')
2727
```
2828

2929
You will have access to `$component`, `$status`, and `$successValue`.

0 commit comments

Comments
 (0)