urlsnail/routes/web.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2024-05-24 20:07:22 +00:00
<?php
use App\Http\Controllers\BookmarkController;
use App\Http\Controllers\ProfileController;
2024-05-29 21:26:05 +00:00
use App\Http\Controllers\TagController;
2024-05-24 20:07:22 +00:00
use Illuminate\Support\Facades\Route;
Route::get(
'/', function () {
return redirect()->action([BookmarkController::class, 'index']);
}
);
2024-05-26 13:41:28 +00:00
2024-05-30 23:01:16 +00:00
Route::resource('bookmarks', BookmarkController::class);
Route::post('/bookmarks/{bookmark}', [BookmarkController::class, 'update']);
2024-05-29 21:26:05 +00:00
Route::resource('tags', TagController::class)->parameters(
[
'tags' => 'tag:name', // tag names in url, rather than ids
]
2024-05-30 23:01:16 +00:00
);
Route::get(
'/dashboard', function () {
return view('dashboard');
}
)->middleware(['auth', 'verified'])->name('dashboard');
Route::middleware('auth')->group(
function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
}
2024-05-29 21:26:05 +00:00
);
require __DIR__.'/auth.php';