Skip to content

Commit f7a6cd2

Browse files
committed
feat: add attribute passing to table rows
1 parent a8934a6 commit f7a6cd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/views/bootstrap-5/table/row.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<tr id="{{ $getRowId() }}">
1+
<tr id="{{ $getRowId() }}" {{ $attributes->merge([]) }}>
22
@if(empty($noCheckbox))
33
<td>
44
<div class="form-check">

resources/views/material-admin-26/table/row.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<tr id="{{ $getRowId() }}">
1+
<tr id="{{ $getRowId() }}" {{ $attributes->merge([]) }}>
22
@if(empty($noCheckbox))
33
<td class="td-checkbox">
44
<div class="checkbox">

0 commit comments

Comments
 (0)