1 | <?php |
||
8 | class DeviceController extends Controller |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * Display a listing of the resource. |
||
13 | * |
||
14 | * @return Response |
||
15 | */ |
||
16 | public function index() |
||
22 | |||
23 | public function create() |
||
27 | |||
28 | public function store() |
||
38 | |||
39 | /** |
||
40 | * Display the specified resource. |
||
41 | * |
||
42 | * @param int $id |
||
43 | * @return Response |
||
44 | */ |
||
45 | public function show($id) |
||
49 | |||
50 | /** |
||
51 | * Show the form for editing the specified resource. |
||
52 | * |
||
53 | * @param int $id |
||
54 | * @return Response |
||
55 | */ |
||
56 | public function edit($id) |
||
60 | |||
61 | /** |
||
62 | * Update the specified resource in storage. |
||
63 | * |
||
64 | * @param int $id |
||
65 | * @return Response |
||
66 | */ |
||
67 | public function update($id) |
||
71 | |||
72 | /** |
||
73 | * Remove the specified resource from storage. |
||
74 | * |
||
75 | * @param int $id |
||
76 | * @return Response |
||
77 | */ |
||
78 | public function destroy($id) |
||
85 | } |
||
86 |