PHP Classes

File: resources/views/vendor/livewire-tables/bootstrap-4/includes/bulk-actions.blade.php

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

Contents

Class file image Download
@if ($this->showBulkActionsDropdown)
    <div class="mb-3 mb-md-0">
        <div class="dropdown d-block d-md-inline">
            <button class="btn dropdown-toggle d-block w-100 d-md-inline" type="button" id="bulkActions" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                @lang('Bulk Actions')
            </button>

            <div class="dropdown-menu dropdown-menu-right w-100" aria-labelledby="bulkActions">
                @foreach($bulkActions as $action => $title)
                    <a
                        href="#"
                       wire:click.prevent="{{ $action }}"
                       wire:key="bulk-action-{{ $action }}"
                       class="dropdown-item"
                    >
                        {{ $title }}
                    </a>
                @endforeach
            </div>
        </div>
    </div>
@endif