We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90e49f commit dde1185Copy full SHA for dde1185
resources/views/update.blade.php
@@ -66,7 +66,23 @@
66
67
@endif
68
69
+@if($_SERVER['QUERY_STRING'] === 'finishing')
70
+<?php //updating... ?>
71
+ <div class="logo-container fadein">
72
+ <img class="logo-img loading" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="">
73
+ <div class="logo-centered">l</div>
74
+ </div>
75
+ <center><h1 class="loadingtxt">Finishing up</h1></center>
76
+
77
+ <?php
78
79
+ //run before finishing:
80
+ // EnvEditor::addKey('MY_VALUE', 'truefalse'); // Adds key to .env file
81
82
+ $URL = Route::current()->getName();
83
+ header("Location: ".$URL."?success");
84
+ exit(); ?>
85
+@endif
86
87
@if($_SERVER['QUERY_STRING'] === 'success')
88
<?php //success ?>
0 commit comments