/**
  * Display the specified resource.
  * @Get("tarifas/")
  * @return \Illuminate\Http\Response
  */
 public function show()
 {
     $payments = Payment::orderBy('price')->get();
     $bonuses = Bonus::orderBy('price')->get();
     $aData = ['payments' => $payments, 'bonuses' => $bonuses, 'section' => 'payment', 'sectionThird' => 'list', 'subsection' => 'tarifa'];
     return view('payment.show', $aData);
 }