fixed mobile uploading and some other shit I cant remember rn
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 1.4 MiB |
@@ -120,7 +120,7 @@ Route::group(["middleware" => "theme"], function() {
|
||||
Route::get('todo', function() { return view('todo'); })->middleware('auth');
|
||||
Route::get('contact', function() { return view('contact'); });
|
||||
#Route::get('terms', function() { return view('tos'); })->middleware('auth');
|
||||
Route::get('privacy', function() { return view('privacy'); })->middleware('auth');
|
||||
Route::get('privacy', function() { return view('privacy'); });
|
||||
Route::get('stats', function() {
|
||||
return view('stats', [
|
||||
'user_count' => \App\Models\User::count(),
|
||||
@@ -149,7 +149,7 @@ Route::group(["middleware" => "theme"], function() {
|
||||
# ]);
|
||||
#});
|
||||
#Route::get('login', function() { return view('login'); });
|
||||
Route::get('donations', function() { return view('donation'); });
|
||||
Route::get('donations', function() { return view('donation'); })->middleware('auth');
|
||||
Route::get('login', 'UserController@loggain');
|
||||
#Route::get('counter-strike', function() { return view('counter-strike'); });
|
||||
|
||||
@@ -182,4 +182,4 @@ Route::group(["middleware" => "theme"], function() {
|
||||
return $form;
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user