1 | <?php |
||
10 | class MakeController extends Controller |
||
11 | { |
||
12 | /** |
||
13 | * MakeController constructor. |
||
14 | */ |
||
15 | 7 | public function __construct() |
|
19 | |||
20 | /** |
||
21 | * Display a listing of the resource. |
||
22 | * |
||
23 | * @return \Illuminate\Http\Response |
||
24 | */ |
||
25 | 1 | public function index() |
|
29 | |||
30 | /** |
||
31 | * Store a newly created resource in storage. |
||
32 | * |
||
33 | * @param \Illuminate\Http\Request $request |
||
34 | */ |
||
35 | 2 | public function store(Request $request) |
|
44 | |||
45 | /** |
||
46 | * Remove the specified resource from storage. |
||
47 | * |
||
48 | * @param int $id |
||
49 | */ |
||
50 | 1 | public function destroy($id) |
|
56 | } |
||
57 |