@extends('layouts.site') @section('title', 'Request Submitted Successfully') @section('content')

Request Submitted Successfully!

Your maintenance request has been received and will be processed soon.

Request Details:

Request ID: #{{ $request->id }}
Title: {{ $request->title }}
Category: {{ \App\Models\MaintenanceRequest::getCategories()[$request->category] }}
Priority: {{ \App\Models\MaintenanceRequest::getPriorities()[$request->priority] }}
Status: {{ ucfirst($request->status) }}
Submitted: {{ $request->requested_at->format('M j, Y g:i A') }}

What happens next?
• Our maintenance team will review your request
• You'll be contacted if additional information is needed
• A maintenance appointment will be scheduled
• You'll receive updates on the request status

@endsection