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