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>
19 lines
904 B
PHP
19 lines
904 B
PHP
<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>
|