1 | <?php |
||
19 | class PaymentSystemController extends Controller |
||
20 | { |
||
21 | /** |
||
22 | * Display a listing of the resource. |
||
23 | * |
||
24 | * @return \Illuminate\Http\Response |
||
25 | */ |
||
26 | public function index() |
||
31 | |||
32 | /** |
||
33 | * Show the form for creating a new resource. |
||
34 | * |
||
35 | * @return \Illuminate\Http\Response |
||
36 | */ |
||
37 | public function create() |
||
41 | |||
42 | /** |
||
43 | * Store a newly created resource in storage. |
||
44 | * |
||
45 | * @param \Illuminate\Http\Request $request |
||
46 | * @return \Illuminate\Http\Response |
||
47 | */ |
||
48 | public function store(Request $request) |
||
72 | |||
73 | /** |
||
74 | * Display the specified resource. |
||
75 | * |
||
76 | * @param int $id |
||
77 | * @return \Illuminate\Http\Response |
||
78 | */ |
||
79 | public function show($id) |
||
83 | |||
84 | /** |
||
85 | * @param PaymentSystem $payment_system |
||
86 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
87 | */ |
||
88 | public function edit(PaymentSystem $payment_system) |
||
92 | |||
93 | |||
94 | /** |
||
95 | * @param Request $request |
||
96 | * @param PaymentSystem $payment_system |
||
97 | * @return \Illuminate\Http\RedirectResponse |
||
98 | */ |
||
99 | public function update(Request $request, PaymentSystem $payment_system) |
||
122 | |||
123 | /** |
||
124 | * @param PaymentSystem $payment_system |
||
125 | * @return \Illuminate\Http\RedirectResponse |
||
126 | * @throws \Exception |
||
127 | */ |
||
128 | public function destroy(PaymentSystem $payment_system) |
||
133 | |||
134 | public function editStatus(PaymentSystem $paymentSystem){ |
||
139 | |||
140 | public function deleteParam($param_id){ |
||
148 | } |
||
149 |