1 | <?php |
||
10 | class ProfileController extends Controller |
||
11 | { |
||
12 | /** |
||
13 | * Display a listing of the resource. |
||
14 | * |
||
15 | * @return \Illuminate\Http\Response |
||
16 | */ |
||
17 | public function index() |
||
21 | |||
22 | /** |
||
23 | * Show the form for creating a new resource. |
||
24 | * |
||
25 | * @return \Illuminate\Http\Response |
||
26 | */ |
||
27 | public function create() |
||
31 | |||
32 | /** |
||
33 | * Store a newly created resource in storage. |
||
34 | * |
||
35 | * @param \Illuminate\Http\Request $request |
||
36 | * @return \Illuminate\Http\Response |
||
37 | */ |
||
38 | public function store(Request $request) |
||
42 | |||
43 | /** |
||
44 | * Display the specified resource. |
||
45 | * |
||
46 | * @param int $id |
||
47 | * @return \Illuminate\Http\Response |
||
48 | */ |
||
49 | public function show($id) |
||
53 | |||
54 | /** |
||
55 | * Show the form for editing the specified resource. |
||
56 | * |
||
57 | * @param int $id |
||
58 | * @return \Illuminate\Http\Response |
||
59 | */ |
||
60 | public function edit($id) |
||
64 | |||
65 | /** |
||
66 | * Update the specified resource in storage. |
||
67 | * |
||
68 | * @param \Illuminate\Http\Request $request |
||
69 | * @param int $id |
||
70 | * @return \Illuminate\Http\Response |
||
71 | */ |
||
72 | public function update(Request $request, $id) |
||
76 | |||
77 | /** |
||
78 | * Remove the specified resource from storage. |
||
79 | * |
||
80 | * @param int $id |
||
81 | * @return \Illuminate\Http\Response |
||
82 | */ |
||
83 | public function destroy($id) |
||
87 | } |
||
88 |