diff options
| author | horus | 2020-02-20 15:35:53 +0100 |
|---|---|---|
| committer | horus | 2020-02-20 15:35:53 +0100 |
| commit | 0edb438872796902d3e4d3c2eea791f6af1956aa (patch) | |
| tree | 849dca17ee23b25ec81808d1c981afc64e8ca33b /routes | |
| parent | 9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418 (diff) | |
| download | zeitumstellung-0edb438872796902d3e4d3c2eea791f6af1956aa.tar.gz | |
Supports iCal-Feed and styled website with bootstrap.css.
Diffstat (limited to 'routes')
| -rw-r--r-- | routes/web.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php index cf25674..70f2245 100644 --- a/routes/web.php +++ b/routes/web.php @@ -17,4 +17,15 @@ Route::get('/', function () { }); */ Route::get('/', 'IndexController@showPage'); -Route::get('/ical', 'iCalController@showPage'); +Route::get('/ical', 'iCalController@icalFeed')->name('ical'); +#Route::get('/kalender', 'iCalController@showPage')->name('calendar'); +Route::get('/kalender', 'IndexController@showPage')->name('calendartest'); + +/* +Auth::routes([ 'register' => false, + 'reset' => false, + 'verify' => false, +]); + */ + +Route::get('/home', 'HomeController@index')->name('home'); |
