Initial Ladill Queue release — enterprise QMS standalone app.
Deploy Ladill Queue / deploy (push) Successful in 56s

Phases 1–6: tickets, counters, displays, appointments, workflows, rules, analytics, reports, feedback, admin, device API, and Gitea deploy workflow for queue.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-29 20:19:52 +00:00
co-authored by Cursor
commit cca98eefd2
297 changed files with 27263 additions and 0 deletions
@@ -0,0 +1,18 @@
<x-app-layout title="Displays">
<div class="mb-6 flex justify-between">
<h1 class="text-2xl font-semibold">Display screens</h1>
<a href="{{ route('qms.displays.create') }}" class="btn-primary">New display</a>
</div>
<div class="space-y-3">
@foreach ($screens as $screen)
<div class="flex items-center justify-between rounded-2xl border bg-white p-4 dark:border-slate-700 dark:bg-slate-900">
<div>
<p class="font-semibold">{{ $screen->name }}</p>
<p class="text-sm text-slate-500">{{ config('qms.display_layouts.'.$screen->layout) }}</p>
</div>
<a href="{{ route('qms.display.public', $screen->access_token) }}" target="_blank" class="btn-secondary text-sm">Open display</a>
</div>
@endforeach
</div>
{{ $screens->links() }}
</x-app-layout>