ro
770959137a
main navigation had buttons nested inside of href tags to house previous font icons that were removed, so the nesting is no longer needed and it could introduce accessibility propblems, so it needed to be cleande up now they are hrefs styled as the previous buttons so there is no visual change in the UI
51 lines
1.8 KiB
PHP
51 lines
1.8 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\RouteController;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
*/
|
|
|
|
//routing needs a bit more nuance, so requests are sent to a controller to sort traffic
|
|
Route::get("/{first?}/{second?}/{third?}/{four?}", [RouteController::class, 'get']);
|
|
Route::post("/{first?}/{second?}/{third?}", [RouteController::class, 'post']);
|
|
|
|
/*
|
|
|
|
REFACTOR: Routing should be handled here instead of a seperate controller, so this needs to be reworked
|
|
KEEP FOR REFERENCE FOR REBUILD
|
|
|
|
Route::get("/", [StartController::class, 'index']);
|
|
|
|
//DASHBOARD
|
|
|
|
//login stuff
|
|
Route::get("/dashboard", [IndexController::class, 'login']);
|
|
Route::post("/login", [AuthController::class, 'enter']);
|
|
|
|
//back
|
|
Route::group(['prefix' => 'dashboard', 'middleware' => 'member.check'], function () {
|
|
Route::get("/start", [IndexController::class, 'start'])->name('start');
|
|
Route::get("/pages/{pageFilter?}/{pageNum?}", [IndexController::class, 'book']);
|
|
Route::get("/page/{mode}/{uuid}", [IndexController::class, 'page']);
|
|
Route::get("/settings", [IndexController::class, 'settings']);
|
|
Route::get("/navigation", [IndexController::class, 'navigation']);
|
|
Route::get("/logout", [AuthController::class, 'exit']);
|
|
});
|
|
|
|
//theme kit
|
|
Route::group(['prefix' => 'theme', 'middleware' => 'member.check'], function () {
|
|
Route::get("/", [ThemeController::class, 'start']);
|
|
Route::get("/view/{view?}", [ThemeController::class, 'getView']);
|
|
});
|
|
|
|
*/
|