コード例 #1
0
 /**
  * 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'));
 }