Assign APK to Rooms
APK Information
| Version Name: | {{ $apkVersion->version_name }} |
| File Size: | {{ $apkVersion->formatted_file_size }} |
| Original Filename: | {{ $apkVersion->original_filename }} |
| Uploaded: | {{ $apkVersion->created_at->format('M j, Y g:i A') }} |
| Uploaded by: | {{ $apkVersion->uploader->name ?? 'Unknown' }} |
| Status: | {{ ucfirst($apkVersion->status) }} |
Description:
@endif
{{ $apkVersion->description }}
Select Rooms for Assignment
@if ($errors->any())
@endif
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Current Assignments for this APK
| Room | Guest | Status | Assigned | Installed | Actions |
|---|---|---|---|---|---|
| {{ $assignment->room->room }} | {{ $assignment->room->guestname ?? '-' }} | @include('pages.apk.components.status-badge', [ 'status' => $assignment->status, ]) | {{ $assignment->assigned_at->format('M j, Y g:i A') }} | {{ $assignment->installed_at ? $assignment->installed_at->format('M j, Y g:i A') : '-' }} |