D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
resources
/
views
/
vendor
/
livewire-tables
/
components
/
table
/
tr
/
Filename :
plain.blade.php
back
Copy
@aware(['component']) @props(['customAttributes' => [], 'displayMinimisedOnReorder' => true]) @if ($component->isTailwind()) <tr {{ $attributes ->merge($customAttributes) ->class(['bg-white dark:bg-gray-700 dark:text-white' => $customAttributes['default'] ?? true]) ->class(['laravel-livewire-tables-reorderingMinimised']) ->except('default') }} > {{ $slot }} </tr> @elseif ($component->isBootstrap()) <tr {{ $attributes ->merge($customAttributes) ->class(['' => $customAttributes['default'] ?? true]) ->class(['laravel-livewire-tables-reorderingMinimised']) ->except('default') }} > {{ $slot }} </tr> @endif