Populair nieuws en agenda redelijk vlot werkend

This commit is contained in:
2017-09-05 03:18:49 +02:00
parent 4392b1c188
commit eb2710a302
2 changed files with 26 additions and 13 deletions

View File

@@ -16,12 +16,13 @@ $app->get('/', function () use ($app) {
});
$app->get('nieuws/overzicht', 'NewsController@newslist' );
$app->get('nieuws/populair', 'NewsController@popular' );
$app->get('nieuws/populair', 'NewsController@popularNews' );
$app->get('nieuws/bericht/{id:\d+}', 'NewsController@newsitem' );
$app->get('nieuws/regionieuws', 'PodcastController@latestNews' );
$app->get('agenda/overzicht[/week]', 'NewsController@calendarlist' );
$app->get('agenda/item/{id:\d+}', 'NewsController@calendaritem' );
$app->get('agenda/populair', 'NewsController@popularCalendar' );
$app->get('podcast/overzicht', 'PodcastController@overview' );
$app->get('podcast/details/{id:\d+}', 'PodcastController@details' );