MangaDex/routes/web.php

25 lines
636 B
PHP
Raw Normal View History

2023-08-22 15:54:26 +06:30
<?php
2023-08-23 18:19:50 +06:30
use Illuminate\Support\Facades\Auth;
2023-08-22 15:54:26 +06:30
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 and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/', function () {
2023-08-23 18:19:50 +06:30
return view('index');
2023-08-22 15:54:26 +06:30
});
Auth::routes();
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
2023-08-23 18:19:50 +06:30