селектор помещений из апи

This commit is contained in:
developer 2026-04-02 12:01:46 +08:00
parent 23349b793d
commit eee932598f

View File

@ -102,10 +102,10 @@ class="img-fluid rounded-start" alt="...">
<label>Площадь:</label>
<div class="input-group">
<span class="input-group-text">от</span>
<input wire:loading.attr="disabled" type="number" wire:model.live="filter.min_area"
<input wire:loading.attr="disabled" type="number" wire:model.live.debounce.500ms="filter.min_area"
class="form-control" placeholder="{{ $typeSummary['min_area'] }}">
<span class="input-group-text">до</span>
<input wire:loading.attr="disabled" type="number" wire:model.live="filter.max_area"
<input wire:loading.attr="disabled" type="number" wire:model.live.debounce.500ms="filter.max_area"
class="form-control" placeholder="{{ $typeSummary['max_area'] }}">
</div>
</div>
@ -113,11 +113,11 @@ class="form-control" placeholder="{{ $typeSummary['max_area'] }}">
<label>Стоимость:</label>
<div class="input-group">
<span class="input-group-text">от</span>
<input wire:loading.attr="disabled" wire:model.live="filter.min_price" type="number"
<input wire:loading.attr="disabled" wire:model.live.debounce.500ms="filter.min_price" type="number"
class="form-control"
placeholder="{{ number_format($typeSummary['min_price'], 0, '', ' ') . ' р.' }}">
<span class="input-group-text">до</span>
<input wire:loading.attr="disabled" wire:model.live="filter.max_price" type="number"
<input wire:loading.attr="disabled" wire:model.live.debounce.500ms="filter.max_price" type="number"
class="form-control"
placeholder="{{ number_format($typeSummary['max_price'], 0, '', ' ') . ' р.' }}">
</div>