PHP Classes

File: resources/views/vendor/livewire-tables/bootstrap-5/includes/filter-type-select.blade.php

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

Contents

Class file image Download
<select
    onclick="event.stopPropagation();"
    wire:model="filters.{{ $key }}"
    id="filter-{{ $key }}"
    class="form-select"
>
    @foreach($filter->options() as $key => $value)
        <option value="{{ $key }}">{{ $value }}</option>
    @endforeach
</select>