1 | <?php |
||
11 | class CalendarsController extends Controller |
||
12 | { |
||
13 | /** |
||
14 | * ExampleController constructor. |
||
15 | */ |
||
16 | 14 | public function __construct() |
|
22 | |||
23 | |||
24 | /** |
||
25 | * Display a listing of the resource. |
||
26 | * |
||
27 | * @return \Illuminate\Http\Response |
||
28 | */ |
||
29 | 2 | public function index() |
|
38 | |||
39 | /** |
||
40 | * Store a newly created resource in storage. |
||
41 | * |
||
42 | * @param CalendarRequest $request |
||
43 | * @return \Illuminate\Http\Response |
||
44 | */ |
||
45 | 2 | public function store(CalendarRequest $request) |
|
53 | |||
54 | /** |
||
55 | * Display the specified resource. |
||
56 | * |
||
57 | * @param int $id |
||
58 | * @return \Illuminate\Http\Response |
||
59 | */ |
||
60 | 6 | public function show($id) |
|
67 | |||
68 | /** |
||
69 | * Update the specified resource in storage. |
||
70 | * |
||
71 | * @param CalendarRequest $request |
||
72 | * @param int $id |
||
73 | * @return \Illuminate\Http\Response |
||
74 | */ |
||
75 | 2 | public function update(CalendarRequest $request, $id) |
|
84 | |||
85 | /** |
||
86 | * Remove the specified resource from storage. |
||
87 | * |
||
88 | * @param int $id |
||
89 | * @return \Illuminate\Http\Response |
||
90 | */ |
||
91 | 2 | public function destroy($id) |
|
99 | } |
||
100 |