PHP Classes

File: resources/views/vendor/livewire-tables/tailwind/components/table/table.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/vendor/livewire-tables/tailwind/components/table/table.blade.php   Download  
File: resources/views/vendor/livewire-tables/tailwind/components/table/table.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 460 bytes
 

Contents

Class file image Download
<div class="align-middle min-w-full overflow-x-auto shadow overflow-hidden rounded-none md:rounded-lg">
    <table {{ $attributes->except('wire:sortable') }} class="min-w-full divide-y divide-gray-200">
        <thead>
            <tr>
                {{ $head }}
            </tr>
        </thead>

        <tbody {{ $attributes->only('wire:sortable') }} class="bg-white divide-y divide-gray-200">
            {{ $body }}
        </tbody>
    </table>
</div>