Implement contact page

+ Created contact page
+ Created input form

TODO: implemement a controller for contact page
This commit is contained in:
2024-02-21 01:46:47 +00:00
parent 26e1d5c17e
commit ee00b37c98
4 changed files with 116 additions and 1 deletions

View File

@@ -202,4 +202,8 @@ Route::get('/recipes', function() {
],
]
]);
});
Route::get('/contact', function () {
return view('contact');
});