Files
TimeLog/routes/web.php
Darius Rapalis 8e65638401 Prompt: copy https://clockify.me for homepage, login and registration pages. Download assets served from clockify.me domain and subdomains to serve locally.
Session:
Total cost:            $2.23 (costs may be inaccurate due to usage of unknown models)
Total duration (API):  29m 38s
Total duration (wall): 34m 2s
Total code changes:    2094 lines added, 2 lines removed

Usage by model:
qwen/qwen3.6-35b-a3b:  78.3k input, 51.5k output, 3.9m cache read, 0 cache write ($2.17)
claude-haiku-4-5:  9.1k input, 11.8k output, 8.3k cache read, 0 cache write ($0.0690)

Runtime: llamacpp
Model: Qwen 3.6 35B A3B Q4 K M
Coding Agent: ClaudeCode
2026-04-29 10:40:02 +03:00

33 lines
767 B
PHP

<?php
use Illuminate\Support\Facades\Route;
// Homepage
Route::get('/', function () {
return view('home');
})->name('home');
// Auth pages
Route::get('/login', function () {
return view('auth.login');
})->name('login');
Route::post('/login', function () {
// TODO: Implement login logic
return redirect()->route('login');
})->name('login.post');
Route::get('/register', function () {
return view('auth.register');
})->name('register');
Route::post('/register', function () {
// TODO: Implement registration logic
return redirect()->route('register');
})->name('register.post');
// Feature pages
Route::get('/features/{feature}', function ($feature) {
return view('features.show', ['feature' => $feature]);
})->name('features');