KTV/resources/views/components/admin/branch-select.blade.php

11 lines
372 B
PHP
Raw Normal View History

<div class="flex items-center gap-2">
<x-select-dropdown
:options="App\Models\Branch::pluck('name', 'id')"
fieldName="selectedBranchId"
:modelId="0"
:selected="$selectedBranchId"
/>
@if ($selectedBranchId)
<span class="text-lg font-semibold whitespace-nowrap">- 包廂設定 ({{ $external_ip }})</span>
@endif
</div>