🔥 **Remove Highscore and Bindle features**

- 🗑️ Deleted `Highscore` feature (Model, Controller, Factory, Tests, Routes, Migrations) and associated logic.
- 🗑️ Removed `BindleController` and its related test.
- 🧹 Cleaned up unused routes, database seeders, and localization references.
- 🚫 Deprecated inactive book rental guide component and associated views.
This commit is contained in:
HolgerHatGarKeineNode
2026-06-08 01:08:07 +02:00
parent 351dd87fa9
commit 3875e127e4
17 changed files with 3 additions and 731 deletions
-21
View File
@@ -16,27 +16,6 @@ Route::get('error/{code}', function (string $code) {
abort($code >= 400 && $code <= 599 ? $code : 404);
})->where('code', '[0-9]{3}');
/*
* Commented out routes related to book rental download and display
* These are currently inactive but can be enabled if needed
*/
/*Route::get('/download-buecherverleih', function (Request $request) {
$filename = $request->input('filename');
// Get the file path from the storage folder
$filePath = storage_path('app/'.$filename);
dd($filePath);
// Check if the file exists
if (!file_exists($filePath)) {
abort(404);
}
// Generate a response with the file for download
return response()->download($filePath, $filename);
})->name('buecherverleih.download');
Route::middleware([])
->get('/buecherverleih', \App\Livewire\BooksForPlebs\BookRentalGuide::class)
->name('buecherverleih');*/
// Route for rabbit following helper page - Updated for Livewire v4
Route::livewire('/kaninchenbau', FollowTheRabbit::class)
->name('kaninchenbau');