1 | <?php namespace jlourenco\base\Controllers; |
||
12 | class BaseController extends Controller |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * Logs frontend |
||
17 | * |
||
18 | * @return View |
||
19 | */ |
||
20 | public function getLogs() |
||
25 | |||
26 | /** |
||
27 | * Ajax call to get all the logs |
||
28 | * |
||
29 | * @return View |
||
30 | */ |
||
31 | public function ajaxGetLogs() |
||
35 | |||
36 | /** |
||
37 | * Queues frontend |
||
38 | * |
||
39 | * @return View |
||
40 | */ |
||
41 | public function getQueues() |
||
46 | |||
47 | /** |
||
48 | * Ajax call to get all the queues |
||
49 | * |
||
50 | * @return View |
||
51 | */ |
||
52 | public function ajaxGetQueues() |
||
65 | |||
66 | /** |
||
67 | * Visits frontend |
||
68 | * |
||
69 | * @return View |
||
70 | */ |
||
71 | public function getVisits() |
||
76 | |||
77 | /** |
||
78 | * Ajax call to get all the visits |
||
79 | * |
||
80 | * @return View |
||
81 | */ |
||
82 | public function ajaxGetVisits() |
||
88 | |||
89 | } |
||
90 |