Passage à Laravel 10 pour Fortify Bootstrap

This commit is contained in:
hugol
2024-08-11 15:38:19 +02:00
parent f28e5700e8
commit 0c4e5538db
96 changed files with 16694 additions and 1962 deletions

View File

@@ -2,15 +2,25 @@
use Illuminate\Support\Facades\Route;
//Route::get('/', [\App\Http\Controllers\HomeController::class, 'index']);
//Route::get('/organizers', [\App\Http\Controllers\HomeController::class, 'organizers']);
//Route::get('/organizer/{screen}', [\App\Http\Controllers\HomeController::class, 'organizer']);
//Route::get('/category/{slug}', [\App\Http\Controllers\HomeController::class, 'category']);
//Route::get('/last-minutes', [\App\Http\Controllers\HomeController::class, 'lastminutes']);
//Route::get('/search', [\App\Http\Controllers\HomeController::class, 'search']);
//Route::get('/aplifier/list', [\App\Http\Controllers\ContestsController::class, 'twitterlist']);
//Route::get('/aplifier/search', [\App\Http\Controllers\ContestsController::class, 'searchcontest']);
/*
|--------------------------------------------------------------------------
| 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!
|
*/
Route::get('/fake', [\App\Http\Controllers\FakeController::class, 'index']);
Route::get('/', function () {
return view('welcome');
});
//Route::get('/img/{path}', [\App\Http\Controllers\WebpController::class, 'show'])->where('path', '.*');
Route::view('home', 'home')
->name('home')
->middleware(['auth']);
Route::view('profile', 'profile.edit')
->name('profile.edit')
->middleware(['auth']);