Skip to content

Commit

Permalink
feat: add attribute passing to table rows
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnnajjaar committed Aug 1, 2024
1 parent a8934a6 commit f7a6cd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/bootstrap-5/table/row.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tr id="{{ $getRowId() }}">
<tr id="{{ $getRowId() }}" {{ $attributes->merge([]) }}>
@if(empty($noCheckbox))
<td>
<div class="form-check">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/material-admin-26/table/row.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tr id="{{ $getRowId() }}">
<tr id="{{ $getRowId() }}" {{ $attributes->merge([]) }}>
@if(empty($noCheckbox))
<td class="td-checkbox">
<div class="checkbox">
Expand Down

0 comments on commit f7a6cd2

Please sign in to comment.