2021-07-30 18:38:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Web Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2021-07-30 22:56:43 +02:00
|
|
|
Route::redirect('/', 'setup');
|
2021-08-03 19:43:16 +02:00
|
|
|
|
|
|
|
// ----- INERTIA ROUTES ----- //
|
2021-07-30 22:56:43 +02:00
|
|
|
Route::inertia('setup', 'SetupPage');
|
2021-08-03 19:17:43 +02:00
|
|
|
|
|
|
|
Route::get('lang/{language}', function ($language) {
|
|
|
|
app()->setLocale($language);
|
|
|
|
|
|
|
|
return redirect()->back();
|
|
|
|
})->name('language');
|