File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,20 +142,20 @@ ButtonGroupColumn::make('Actions')
142
142
->buttons([
143
143
LinkColumn::make('View') // make() has no effect in this case but needs to be set anyway
144
144
->title(fn($row) => 'View ' . $row->name)
145
- ->location(fn($row) => route('user.show', $row)),
145
+ ->location(fn($row) => route('user.show', $row))
146
146
->attributes(function($row) {
147
147
return [
148
148
'class' => 'underline text-blue-500 hover:no-underline',
149
149
];
150
150
}),
151
151
LinkColumn::make('Edit')
152
152
->title(fn($row) => 'Edit ' . $row->name)
153
- ->location(fn($row) => route('user.edit', $row)),
153
+ ->location(fn($row) => route('user.edit', $row))
154
154
->attributes(function($row) {
155
155
return [
156
156
'target' => '_blank',
157
157
'class' => 'underline text-blue-500 hover:no-underline',
158
158
];
159
159
}),
160
160
]),
161
- ```
161
+ ```
You can’t perform that action at this time.
0 commit comments