PHP Classes

File: resources/views/vendor/livewire-tables/tailwind/includes/reorder.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/vendor/livewire-tables/tailwind/includes/reorder.blade.php   Download  
File: resources/views/vendor/livewire-tables/tailwind/includes/reorder.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: 622 bytes
 

Contents

Class file image Download
@if ($reorderEnabled)
    <button
        wire:click="{{ $reordering ? 'disableReordering' : 'enableReordering' }}"
        type="button"
        class="inline-flex justify-center items-center w-full md:w-auto px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-md text-gray-700 bg-white hover:text-gray-500 focus:outline-none focus:border-indigo-300 focus:shadow-outline-indigo active:bg-gray-50 active:text-gray-800 transition ease-in-out duration-150"
    >
        @if ($reordering)
            @lang('Done Reordering')
        @else
            @lang('Reorder')
        @endif
    </button>
@endif