projectTA/routes/web.php

46 lines
1.6 KiB
PHP

<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\DashboardController;
use App\Http\Controllers\AuthController;
use App\Http\Controllers\ESP32CamController;
use App\Http\Controllers\PhotoController;
/*
|--------------------------------------------------------------------------
| 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!
|
*/
// Rute untuk autentikasi
Route::get('/login', [AuthController::class, 'showLoginForm'])->name('login');
Route::post('/login/process', [AuthController::class, 'processLogin'])->name('login.process');
Route::post('/logout', [AuthController::class, 'logout'])->name('logout');
Route::get('/check-session', [AuthController::class, 'checkSession'])->name('check.session');
// Rute yang dilindungi auth
Route::middleware(['firebase.auth'])->group(function () {
Route::get('/', function () {
return redirect()->route('dashboard');
});
Route::get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
Route::get('/history', function () {
return view('history');
})->name('history');
// Tambahkan route untuk melihat semua foto
Route::get('/photos', [ESP32CamController::class, 'all'])->name('photos.all');
// Tambahkan route untuk pengaturan ESP32CAM
Route::get('/esp32cam/settings', function () {
return view('esp32cam.settings');
})->name('esp32cam.settings');
});