- @elseif ($application->status === 2)
-
- @endif
-
-
Application
- @php
- $status = [
- 0 => 'Pending Review',
- 1 => 'Approved',
- 2 => 'Denied',
- ];
- @endphp
-
-
- Status:
- {{ $status[$application->status] }}
-
- @if ($application->registration_token)
-
- Registration Token (valid until
- {{ $application->updated_at->addWeek()->format('Y-m-d') }})
-
-
- To sign up, you should use Element Web or
- Element Desktop, as the authentication token is not compatible
- with the mobile clients.
- @endif
-
-
+
@if ($application->status === 0)
-
- Message
-
- {{ $application->message }}
-
-
+
+ Application pending
+
+ Your application is waiting for review. This process can take 24-48 hours.
+
+ This site automatically refreshes, no need to reload manually.
+
+
+
+
Uploaded Photos:
@@ -52,6 +21,28 @@
@endforeach
+ @elseif($application->status === 1)
+
+ Application approved
+
+ @if ($application->registration_token)
+
+ Registration Token (valid until
+ {{ $application->updated_at->addWeek()->format('Y-m-d') }})
+
+
+ To sign up, you should use Element Web
+
+ or
+ Element Desktop, as the registration token is not compatible
+ with the mobile clients.
+ @endif
+
+
+ @elseif($application->status === 2)
+
@endif
-