PHP Classes

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

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

Contents

Class file image Download
@if ($reorderEnabled)
    <div class="me-0 me-md-2 mb-3 mb-md-0">
        <button
            wire:click="{{ $reordering ? 'disableReordering' : 'enableReordering' }}"
            type="button"
            class="btn btn-default d-block w-100 d-md-inline"
        >
            @if ($reordering)
                @lang('Done Reordering')
            @else
                @lang('Reorder')
            @endif
        </button>
    </div>
@endif