Skip to content

Commit debb028

Browse files
committed
Update UserTable.php
1 parent e928167 commit debb028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Livewire/UserTable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function columns(): array
4141
->searchable()
4242
->format(function ($value, $row, Column $column) {
4343
if (!$row->littlelink_name == NULL) {
44-
return "<a href='" . url('') . "/@" . htmlspecialchars($row->littlelink_name) . "' target='_blank' class='text-info'><i class='bi bi-box-arrow-up-right'></i>&nbsp; " . $row->littlelink_name . " </a>";
44+
return "<a href='" . url('') . "/@" . htmlspecialchars($row->littlelink_name) . "' target='_blank' class='text-info'><i class='bi bi-box-arrow-up-right'></i>&nbsp; " . htmlspecialchars($row->littlelink_name) . " </a>";
4545
} else {
4646
return 'N/A';
4747
}

0 commit comments

Comments
 (0)