Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e36bf37

Browse files
committedNov 10, 2024·
- Added attributes to tables
Signed-off-by: Arushad Ahmed <dash-8x@hotmail.com>
1 parent d956abf commit e36bf37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="table-responsive">
1+
<div {!! $attributes->merge(['class' => 'table-responsive']) !!}>
22

33
@if(empty($noBulk))
44
@if(isset($bulkForm) && $bulkForm->isNotEmpty())

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="table-responsive">
1+
<div {!! $attributes->merge(['class' => 'table-responsive']) !!}>
22
@if(empty($noBulk))
33
@if(isset($bulkForm) && $bulkForm->isNotEmpty())
44
<x-forms::form-open :action="$bulkForm->attributes->get('action')" method="PUT" class="delete-form" />

0 commit comments

Comments
 (0)
Please sign in to comment.