summaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authorhorus2020-04-13 23:25:42 +0200
committerhorus2020-04-13 23:25:42 +0200
commitbf823c5063b5ad863e7e7cc313fb1406ddd14a98 (patch)
tree85eb9260be6466143bb99854d563f385f1c61ba7 /routes/web.php
parent075716a5c2698e2687069767cf8d09d4c27487a5 (diff)
downloadcurious-bf823c5063b5ad863e7e7cc313fb1406ddd14a98.tar.gz
Add new page popular topics.
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php
index 79615a6..a45dc59 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -18,6 +18,7 @@ Route::get('/topic/{topic}', 'IndexController@topic')->name('topic')->where('top
Route::get('/topic/', 'IndexController@topicindex')->name('topic_index');
Route::get('/new', 'IndexController@new')->name('new');
Route::get('/search', 'IndexController@search')->name('search');
+Route::get('/popular/topics', 'IndexController@populartopics')->name('popular_topics');
Route::get('/popular', 'IndexController@popular')->name('popular');
Route::get('/random', 'IndexController@random')->name('random');