diff options
| author | horus | 2020-04-19 18:28:17 +0200 |
|---|---|---|
| committer | horus | 2020-04-19 18:28:17 +0200 |
| commit | ea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691 (patch) | |
| tree | e4f31cad2fa3bab448ebd604841e7a4e57ab8bba /app/Http/Controllers/IndexController.php | |
| parent | bf823c5063b5ad863e7e7cc313fb1406ddd14a98 (diff) | |
| download | curious-ea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691.tar.gz | |
Add footer with about page.
Diffstat (limited to 'app/Http/Controllers/IndexController.php')
| -rw-r--r-- | app/Http/Controllers/IndexController.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Http/Controllers/IndexController.php b/app/Http/Controllers/IndexController.php index bb1d301..9f21bbb 100644 --- a/app/Http/Controllers/IndexController.php +++ b/app/Http/Controllers/IndexController.php @@ -17,6 +17,11 @@ class IndexController extends Controller return view('index'); } + public function about() + { + return view('about'); + } + public function topic( $topic ) { $articles = new Category; |
