Statische pagina's via intranet

This commit is contained in:
NH Gooi
2025-07-15 15:45:09 +02:00
parent b64defe7fc
commit c8fd7e8a51
7533 changed files with 51 additions and 28 deletions

0
routes/api.php Normal file → Executable file
View File

0
routes/channels.php Normal file → Executable file
View File

0
routes/console.php Normal file → Executable file
View File

8
routes/web.php Normal file → Executable file
View File

@@ -105,7 +105,7 @@ Route::get('/vacatures/{id}/{title}', 'JobsController@show')->where(['id' => '\d
Route::any('/winterse50', function() { return redirect('/programma/1080/winterse-50'); });
// Route::any('/vol-luisterlijst', 'SpecialController@luisterlijst_stem');
Route::any('/vol-luisterlijst', 'SpecialController@luisterlijst_stem');
Route::any('/vol-luisterlijst', 'Controller@view_luisterlijst_2021');
Route::any('/luisterlijst/2019', 'Controller@view_luisterlijst_2019');
Route::any('/luisterlijst/2021', 'Controller@view_luisterlijst_2021');
@@ -114,6 +114,8 @@ Route::any('/luisterlijst', 'Controller@view_luisterlijst_2021');
Route::any('/debat', 'Controller@view_debat');
Route::any('/kijk/gids', 'Controller@view_tvgids');
//Route::get('/special/stmaarten', function() { return file_get_contents('http://api-dev.6fm.nl/special/stmaarten'); });
//Route::get('/kabelkrant', function() { return view('kabelkrant'); });
Route::get('/special/stmaarten', function() { return file_get_contents('http://api-dev.6fm.nl/special/stmaarten'); });
Route::get('/kabelkrant', function() { return view('kabelkrant'); });
// Catch all route
Route::get('{slug}', 'Controller@static_page')->where('slug', '^.*');