1 | <?php |
||
5 | class PageController extends Controller |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Return the homepage view |
||
10 | * @return mixed |
||
11 | */ |
||
12 | public function home() |
||
17 | |||
18 | /** |
||
19 | * Return the api dashboard view listing available apis |
||
20 | * @return mixed |
||
21 | */ |
||
22 | public function api() |
||
27 | |||
28 | /** |
||
29 | * Return the contact page view |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function contact() |
||
37 | } |
||
38 |