Deploy Ladill Queue / deploy (push) Successful in 28s
Poll displays every 1.2s with client-side TTS ack; expose service API for sibling apps; redesign tickets, counters, and staff console. Co-authored-by: Cursor <cursoragent@cursor.com>
52 lines
3.5 KiB
PHP
52 lines
3.5 KiB
PHP
<x-app-layout title="Settings">
|
|
<div class="mx-auto max-w-lg">
|
|
<h1 class="text-2xl font-semibold">Organization settings</h1>
|
|
<form method="POST" action="{{ route('qms.settings.update') }}" class="mt-6 space-y-4 rounded-2xl border bg-white p-6 dark:border-slate-700 dark:bg-slate-900">
|
|
@csrf @method('PUT')
|
|
<div><label class="block text-sm font-medium">Organization name</label>
|
|
<input name="name" value="{{ $organization->name }}" @disabled(! $canManage) required class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
</div>
|
|
<div><label class="block text-sm font-medium">Timezone</label>
|
|
<input name="timezone" value="{{ $organization->timezone }}" @disabled(! $canManage) required class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
</div>
|
|
<div><label class="block text-sm font-medium">Appointment mode</label>
|
|
<select name="appointment_mode" @disabled(! $canManage) class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
@foreach ($appointmentModes as $v => $l)
|
|
<option value="{{ $v }}" @selected(($organization->settings['appointment_mode'] ?? 'hybrid') === $v)>{{ $l }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div><label class="block text-sm font-medium">Industry</label>
|
|
<select name="industry" @disabled(! $canManage) class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
@foreach ($industries as $v => $l)
|
|
<option value="{{ $v }}" @selected(($organization->settings['industry'] ?? '') === $v)>{{ $l }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<label class="flex items-center gap-2 text-sm">
|
|
<input type="checkbox" name="notifications_enabled" value="1" @checked($organization->settings['notifications_enabled'] ?? true) @disabled(! $canManage)>
|
|
Enable SMS/email queue notifications
|
|
</label>
|
|
|
|
<div class="rounded-xl border border-slate-200 p-4">
|
|
<h2 class="text-sm font-semibold text-slate-900">Sibling app integrations</h2>
|
|
<p class="mt-1 text-xs text-slate-500">Allow Ladill Care and Frontdesk to manage queues in-app via the Queue API. Both apps must also enable integration in their settings.</p>
|
|
<div class="mt-3 space-y-2">
|
|
<label class="flex items-center gap-2 text-sm">
|
|
<input type="checkbox" name="care_integration_enabled" value="1" @checked(data_get($organization->settings, 'integrations.care_enabled')) @disabled(! $canManage)>
|
|
Ladill Care can manage queues
|
|
</label>
|
|
<label class="flex items-center gap-2 text-sm">
|
|
<input type="checkbox" name="frontdesk_integration_enabled" value="1" @checked(data_get($organization->settings, 'integrations.frontdesk_enabled')) @disabled(! $canManage)>
|
|
Ladill Frontdesk can manage queues
|
|
</label>
|
|
</div>
|
|
</div>
|
|
@if ($canManage)
|
|
<button type="submit" class="btn-primary w-full">Save settings</button>
|
|
@endif
|
|
</form>
|
|
<p class="mt-4 text-sm text-slate-600">{{ $branchCount }} branch{{ $branchCount === 1 ? '' : 'es' }} configured.</p>
|
|
</div>
|
|
</x-app-layout>
|