1 | <?php |
||
12 | class SlackController extends Controller |
||
13 | { |
||
14 | /** |
||
15 | * Return all data to the Slack API dashboard |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function getPage() |
||
24 | |||
25 | /** |
||
26 | * Get All Users on Your Team |
||
27 | * @return array |
||
28 | */ |
||
29 | private function getAllUsersOnYourTeam($count = null) |
||
39 | |||
40 | /** |
||
41 | * Send Message to Channel or Group |
||
42 | * @param Request $request |
||
43 | * @return Session |
||
44 | */ |
||
45 | public function sendMessageToTeam(Request $request) |
||
57 | } |
||
58 |