101 lines
3.8 KiB
PHP
101 lines
3.8 KiB
PHP
@aware([ 'tableName','isTailwind','isBootstrap'])
|
|
|
|
@php
|
|
$customAttributes = [
|
|
'wrapper' => $this->getTableWrapperAttributes(),
|
|
'table' => $this->getTableAttributes(),
|
|
'thead' => $this->getTheadAttributes(),
|
|
'tbody' => $this->getTbodyAttributes(),
|
|
];
|
|
@endphp
|
|
|
|
@if ($isTailwind)
|
|
<div
|
|
wire:key="{{ $tableName }}-twrap"
|
|
{{ $attributes->merge($customAttributes['wrapper'])
|
|
->class([
|
|
'shadow overflow-y-auto border-b border-gray-200 dark:border-gray-700 sm:rounded-lg' => $customAttributes['wrapper']['default'] ?? true
|
|
])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
<table
|
|
wire:key="{{ $tableName }}-table"
|
|
{{ $attributes->merge($customAttributes['table'])
|
|
->class(['min-w-full divide-y divide-gray-200 dark:divide-none' => $customAttributes['table']['default'] ?? true])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
|
|
>
|
|
<thead wire:key="{{ $tableName }}-thead"
|
|
{{ $attributes->merge($customAttributes['thead'])
|
|
->class([
|
|
'bg-gray-50 dark:bg-gray-800' => $customAttributes['thead']['default'] ?? true
|
|
])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
<tr>
|
|
{{ $thead }}
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody
|
|
wire:key="{{ $tableName }}-tbody"
|
|
id="{{ $tableName }}-tbody"
|
|
{{ $attributes->merge($customAttributes['tbody'])
|
|
->class([
|
|
'bg-white divide-y divide-gray-200 dark:bg-gray-800 dark:divide-none' => $customAttributes['tbody']['default'] ?? true
|
|
])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
{{ $slot }}
|
|
</tbody>
|
|
|
|
@isset($tfoot)
|
|
<tfoot wire:key="{{ $tableName }}-tfoot">
|
|
{{ $tfoot }}
|
|
</tfoot>
|
|
@endisset
|
|
</table>
|
|
</div>
|
|
@elseif ($isBootstrap)
|
|
<div wire:key="{{ $tableName }}-twrap"
|
|
{{ $attributes->merge($customAttributes['wrapper'])
|
|
->class(['table-responsive' => $customAttributes['wrapper']['default'] ?? true])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
<table
|
|
wire:key="{{ $tableName }}-table"
|
|
{{ $attributes->merge($customAttributes['table'])
|
|
->class(['laravel-livewire-table table' => $customAttributes['table']['default'] ?? true])
|
|
->except(['default','default-styling','default-colors'])
|
|
}}
|
|
>
|
|
<thead
|
|
wire:key="{{ $tableName }}-thead"
|
|
{{ $attributes->merge($customAttributes['thead'])
|
|
->class(['' => $customAttributes['thead']['default'] ?? true])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
<tr>
|
|
{{ $thead }}
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody
|
|
wire:key="{{ $tableName }}-tbody"
|
|
id="{{ $tableName }}-tbody"
|
|
{{ $attributes->merge($customAttributes['tbody'])
|
|
->class(['' => $customAttributes['tbody']['default'] ?? true])
|
|
->except(['default','default-styling','default-colors']) }}
|
|
>
|
|
{{ $slot }}
|
|
</tbody>
|
|
|
|
@isset($tfoot)
|
|
<tfoot wire:key="{{ $tableName }}-tfoot">
|
|
{{ $tfoot }}
|
|
</tfoot>
|
|
@endisset
|
|
</table>
|
|
</div>
|
|
@endif
|