1 | <?php |
||
14 | class MeetingsController extends Controller |
||
15 | { |
||
16 | /** |
||
17 | * ExampleController constructor. |
||
18 | */ |
||
19 | 28 | public function __construct() |
|
25 | |||
26 | /** |
||
27 | * Display a listing of the resource. |
||
28 | * |
||
29 | * @param int $groupId |
||
30 | * @return mixed |
||
31 | */ |
||
32 | 2 | public function index($groupId) |
|
39 | |||
40 | /** |
||
41 | * Display the specified resource. |
||
42 | * |
||
43 | * @param int $groupId |
||
44 | * @param int $meetingId |
||
45 | * @return mixed |
||
46 | */ |
||
47 | 6 | public function show($groupId, $meetingId) |
|
55 | |||
56 | /** |
||
57 | * Store a newly created resource in storage. |
||
58 | * |
||
59 | * @param MeetingRequest $request |
||
60 | * @param int $groupId |
||
61 | * @return static |
||
62 | */ |
||
63 | 8 | public function store(MeetingRequest $request, $groupId) |
|
71 | |||
72 | /** |
||
73 | * Update the specified resource in storage. |
||
74 | * |
||
75 | * @param MeetingRequest $request |
||
76 | * @param int $meetingId |
||
77 | * @param int $groupId |
||
78 | * @return mixed |
||
79 | */ |
||
80 | 8 | public function update(MeetingRequest $request, $groupId, $meetingId) |
|
90 | |||
91 | /** |
||
92 | * Remove the specified resource from storage. |
||
93 | * |
||
94 | * @param int $groupId |
||
95 | * @param int $meetingId |
||
96 | * @return mixed |
||
97 | */ |
||
98 | 8 | public function destroy($groupId, $meetingId) |
|
107 | } |
||
108 |