mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
19 lines
495 B
PHP
19 lines
495 B
PHP
<form wire:submit>
|
|
<wa-input wire:model.live="searchText" type="text" placeholder="Search for posts, tags, users, etc.">
|
|
<wa-icon slot="prefix" name="magnifying-glass"></wa-icon>
|
|
</wa-input>
|
|
|
|
<wa-popup
|
|
placement="bottom-end"
|
|
distance="10"
|
|
sync="width"
|
|
auto-size="vertical"
|
|
auto-size-padding="10"
|
|
{{ $searchResults ? 'active' : '' }}>
|
|
<wa-card>
|
|
@isset($searchResults)
|
|
<pre><code>{{ var_dump($searchResults) }}</code></pre>
|
|
@endisset
|
|
</wa-card>
|
|
</wa-popup>
|
|
</form>
|