Files
ladill-frontdesk/resources/views/frontdesk/admin/buildings/index.blade.php
T
isaaccladandCursor 9e2d79936c
Deploy Ladill Frontdesk / deploy (push) Failing after 35s
Test / test (push) Failing after 2m45s
Initial Ladill Frontdesk release with deploy pipeline.
Visitor management app with SSO, kiosk, badges, reports, and Gitea CI deploy to frontdesk.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 20:37:15 +00:00

36 lines
1.9 KiB
PHP

<x-app-layout :title="$branch->name.' buildings'">
<div class="flex items-center justify-between">
<div>
<a href="{{ route('frontdesk.branches.index') }}" class="text-sm text-teal-600"> Branches</a>
<h1 class="mt-1 text-xl font-semibold text-slate-900">{{ $branch->name }}</h1>
</div>
</div>
<form method="POST" action="{{ route('frontdesk.buildings.store', $branch) }}" class="mt-6 flex gap-2 rounded-2xl border border-slate-200 bg-white p-4">
@csrf
<input type="text" name="name" placeholder="Building name" required class="flex-1 rounded-lg border-slate-300 text-sm">
<input type="text" name="floor_count" placeholder="Floors" class="w-24 rounded-lg border-slate-300 text-sm">
<button type="submit" class="rounded-lg bg-teal-600 px-4 py-2 text-sm font-medium text-white">Add</button>
</form>
<div class="mt-4 space-y-2">
@forelse ($buildings as $building)
<div class="flex items-center justify-between rounded-xl border border-slate-200 bg-white px-4 py-3">
<div>
<p class="font-medium">{{ $building->name }}</p>
<p class="text-xs text-slate-500">{{ $building->reception_desks_count }} desk(s)</p>
</div>
<div class="flex gap-3">
<a href="{{ route('frontdesk.desks.index', $building) }}" class="text-sm text-teal-600">Desks</a>
<form method="POST" action="{{ route('frontdesk.buildings.destroy', [$branch, $building]) }}" onsubmit="return confirm('Remove this building?')">
@csrf @method('DELETE')
<button type="submit" class="text-sm text-red-600">Remove</button>
</form>
</div>
</div>
@empty
<p class="text-sm text-slate-500">No buildings yet.</p>
@endforelse
</div>
</x-app-layout>