Files
ladill-care/resources/views/care/appointments/walk-in.blade.php
T
isaaccladandCursor 6c9c742ed8
Deploy Ladill Care / deploy (push) Failing after 13s
Initial Ladill Care release.
Healthcare management app: patients, appointments, consultations, lab,
pharmacy inventory, billing, and reports at care.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 11:36:22 +00:00

14 lines
732 B
PHP

<x-app-layout title="Walk-in">
<h1 class="text-xl font-semibold text-slate-900">Register walk-in</h1>
<p class="mt-1 text-sm text-slate-500">Check in a patient and add them to the queue immediately</p>
<form method="POST" action="{{ route('care.appointments.walk-in.store') }}" class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
@csrf
@include('care.appointments._form', ['isWalkIn' => true])
<div class="mt-6 flex gap-3">
<button type="submit" class="btn-primary">Add to queue</button>
<a href="{{ route('care.queue.index') }}" class="rounded-lg border border-slate-200 px-4 py-2 text-sm text-slate-600">Cancel</a>
</div>
</form>
</x-app-layout>