1 | <?php |
||
11 | class PhoneController extends Controller { |
||
12 | |||
13 | |||
14 | public function index() |
||
20 | |||
21 | /** |
||
22 | * Show the form for creating a new resource. |
||
23 | * |
||
24 | * @return \Illuminate\Http\Response |
||
25 | */ |
||
26 | public function create() |
||
30 | |||
31 | /** |
||
32 | * Store a newly created resource in storage. |
||
33 | * |
||
34 | * @param \Illuminate\Http\Request $request |
||
35 | * |
||
36 | * @return \Illuminate\Http\Response |
||
37 | */ |
||
38 | public function store(Request $request) |
||
44 | |||
45 | /** |
||
46 | * Show the form for editing the specified resource. |
||
47 | * |
||
48 | * @param int $id |
||
49 | * |
||
50 | * @return \Illuminate\Http\Response |
||
51 | */ |
||
52 | public function edit($id) |
||
58 | |||
59 | /** |
||
60 | * Update the specified resource in storage. |
||
61 | * |
||
62 | * @param \Illuminate\Http\Request $request |
||
63 | * |
||
64 | * @return \Illuminate\Http\Response |
||
65 | */ |
||
66 | public function update(Request $request) |
||
76 | |||
77 | /** |
||
78 | * Remove the specified resource from storage. |
||
79 | * |
||
80 | * @param int $id |
||
81 | * |
||
82 | * @return \Illuminate\Http\Response |
||
83 | */ |
||
84 | public function destroy($id) |
||
92 | } |