Skip to content

Commit

Permalink
Added about route and temp cv route
Browse files Browse the repository at this point in the history
  • Loading branch information
dsbilling committed Dec 7, 2023
1 parent 7c9756f commit 5d90c14
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
*/

Route::get('/', [HomeController::class, 'index'])->name('home');
Route::get('/about', function () {
return view('about');
})->name('about');

Route::get('/cv', function () {
return view('about');
})->name('cv');

Route::resource('blog', BlogController::class);
Route::get('/uses', function () {
return redirect()->route('blog.show', ['blog' => config('blog.uses')]);
Expand Down

0 comments on commit 5d90c14

Please sign in to comment.