1: <?php
2:
3: /**
4: * Description of DbController
5: *
6: * @author Victor
7: */
8: class DbController extends BaseController {
9:
10: public function getIndex()
11: {
12: return View::make("cart::dbview");
13: }
14:
15: public function getGreeting() {
16: $mysqlGopher = app('MysqlGopher');
17: return $mysqlGopher->greeting();
18: }
19:
20: public function getSelect($table = null)
21: {
22: return View::make("cart::dbview");
23: }
24:
25: public function getTable($name = null)
26: {
27: die;
28: }
29:
30: public function missingMethod($parameters = array())
31: {
32: return "Missing Method";
33: }
34:
35: }
36:
37: ?>
38: