blog/routes/web.php

24 lines
739 B
PHP
Raw Normal View History

2024-02-19 11:07:04 +01:00
<?php
use App\Http\Controllers\HomeController;
use App\Http\Controllers\PhotoController;
2024-02-19 11:07:04 +01:00
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('/', [HomeController::class, 'index'])->name('home');
2024-02-19 11:07:04 +01:00
//Auth::routes();
2024-02-19 11:07:04 +01:00
Route::get('/', [HomeController::class, 'index'])->name('home');
Route::get('/photos', [PhotoController::class, 'index'])->name('photos');