KTV/resources/views/components/admin/branch-select.blade.php
allen.yan 2769e82a37 功能調整
API 收到包廂指令先押資料
加入 包廂列表
加入 包廂控制介面
加入 包廂記錄
補上正規劃
20250729
2025-07-29 00:24:03 +08:00

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>