/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //SE REGISTRA LA ACTIVIDAD EN LA BITACORA
     $this->binnacle("ENTRĂ“ A LA LISTA DE GASTOS FIJOS");
     $fixeds = FixedCost::all();
     return view('fixedcost.index', compact('fixeds'));
 }