diff options
author | Camil Staps | 2016-07-18 21:33:31 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-18 21:33:31 +0200 |
commit | 246439a5c0670da535d4c458eae3fa766335fa3f (patch) | |
tree | b500c3882948b2a08af5ec6bd55552b6ef82b144 /app/Http | |
parent | Cleaner logging (diff) |
Statistics page
Diffstat (limited to 'app/Http')
-rw-r--r-- | app/Http/routes.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Http/routes.php b/app/Http/routes.php index 70e9164..67b661b 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -43,5 +43,9 @@ $app->group(['prefix' => parse_url(env('APP_URL'), PHP_URL_PATH)], function ($ap }); $app->get('/verb/random', 'App\Http\Controllers\RandomVerbController@show'); + + $app->get('/stats', function () use ($app) { + return view('stats'); + }); }); |