11 lines
372 B
PHP
11 lines
372 B
PHP
<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> |