селектор помещений из апи
This commit is contained in:
parent
23349b793d
commit
eee932598f
@ -102,10 +102,10 @@ class="img-fluid rounded-start" alt="...">
|
|||||||
<label>Площадь:</label>
|
<label>Площадь:</label>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<span class="input-group-text">от</span>
|
<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'] }}">
|
class="form-control" placeholder="{{ $typeSummary['min_area'] }}">
|
||||||
<span class="input-group-text">до</span>
|
<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'] }}">
|
class="form-control" placeholder="{{ $typeSummary['max_area'] }}">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -113,11 +113,11 @@ class="form-control" placeholder="{{ $typeSummary['max_area'] }}">
|
|||||||
<label>Стоимость:</label>
|
<label>Стоимость:</label>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<span class="input-group-text">от</span>
|
<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"
|
class="form-control"
|
||||||
placeholder="{{ number_format($typeSummary['min_price'], 0, '', ' ') . ' р.' }}">
|
placeholder="{{ number_format($typeSummary['min_price'], 0, '', ' ') . ' р.' }}">
|
||||||
<span class="input-group-text">до</span>
|
<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"
|
class="form-control"
|
||||||
placeholder="{{ number_format($typeSummary['max_price'], 0, '', ' ') . ' р.' }}">
|
placeholder="{{ number_format($typeSummary['max_price'], 0, '', ' ') . ' р.' }}">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user