PATH:
home
/
rwabteecom
/
public_html_old
/
resources
/
views
/
vendor
/
livewire-tables
/
components
/
tools
/
filters
/
Editing: select.blade.php
<div> <x-livewire-tables::tools.filter-label :$filter :$filterLayout :$tableName :$isTailwind :$isBootstrap4 :$isBootstrap5 :$isBootstrap /> <div @class([ 'rounded-md shadow-sm' => $isTailwind, 'inline' => $isBootstrap, ])> <select wire:model.live="filterComponents.{{ $filter->getKey() }}" wire:key="{{ $filter->generateWireKey($tableName, 'select') }}" id="{{ $tableName }}-filter-{{ $filter->getKey() }}@if($filter->hasCustomPosition())-{{ $filter->getCustomPosition() }}@endif" @class([ 'block w-full border-gray-300 rounded-md shadow-sm transition duration-150 ease-in-out focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 dark:bg-gray-800 dark:text-white dark:border-gray-600' => $isTailwind, 'form-control' => $isBootstrap4, 'form-select' => $isBootstrap5, ]) > @foreach($filter->getOptions() as $key => $value) @if (is_iterable($value)) <optgroup label="{{ $key }}"> @foreach ($value as $optionKey => $optionValue) <option value="{{ $optionKey }}">{{ $optionValue }}</option> @endforeach </optgroup> @else <option value="{{ $key }}">{{ $value }}</option> @endif @endforeach </select> </div> </div>
SAVE
CANCEL