1 | <?php |
||
13 | class MeetingsController extends Controller |
||
14 | { |
||
15 | /** |
||
16 | * ExampleController constructor. |
||
17 | */ |
||
18 | 8 | public function __construct() |
|
24 | |||
25 | /** |
||
26 | * Display a listing of the resource. |
||
27 | * |
||
28 | * @return \Illuminate\Http\Response |
||
29 | */ |
||
30 | 2 | public function index() |
|
35 | |||
36 | /** |
||
37 | * Display the specified resource. |
||
38 | * |
||
39 | * @param int $id |
||
40 | * @return \Illuminate\Http\Response |
||
41 | */ |
||
42 | 4 | public function show($id) |
|
48 | } |
||
49 |