Skip to content

Commit c72dbc7

Browse files
committed
For later
1 parent b03bc81 commit c72dbc7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/Http/Livewire/UserTable.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ public function configure(): void
2323
public function columns(): array
2424
{
2525
return [
26-
Column::make("", "id")
27-
->format(function ($value, $row, Column $column) {
28-
return view('components.table-components.select', ['user' => $row]);
29-
}),
26+
// Column::make("", "id")
27+
// ->format(function ($value, $row, Column $column) {
28+
// return view('components.table-components.select', ['user' => $row]);
29+
// }),
3030
Column::make(__('messages.ID'), "id")
3131
->sortable()
3232
->searchable(),

resources/views/panel/users.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
attachClickEventListeners('user-email', handleUserClick);
9999
attachClickEventListeners('user-block', handleUserClick);
100100
</script>
101-
<script type="text/javascript">
101+
{{-- <script type="text/javascript">
102102
// Get the delete button div
103103
var deleteButtonDiv = document.getElementById('select-active');
104104
@@ -155,7 +155,7 @@
155155
156156
// Add event listener to delete button
157157
deleteButton.addEventListener('click', deleteSelectedUsers);
158-
</script>
158+
</script> --}}
159159

160160
</div>
161161
</section>

0 commit comments

Comments
 (0)