feat: add guestbook with rate limiting (#6)
* Re-add guestbook w/ rate limiting * Add guestbook to navbar
This commit is contained in:
parent
8adae46775
commit
94133ec0f7
12 changed files with 329 additions and 91 deletions
|
@ -32,3 +32,12 @@
|
|||
Route::get('/computers', function () {
|
||||
return View::make('pages.computers');
|
||||
});
|
||||
|
||||
Route::get('/guestbook', 'App\Http\Controllers\GuestbookController@guestbook')
|
||||
->name('guestbook');
|
||||
|
||||
Route::post('/guestbook', 'App\Http\Controllers\GuestbookController@guestbookpost')
|
||||
->name('guestbookPost')
|
||||
->middleware('rate_limit');
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue