/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $cargas = Carga::latest()->get();
     return view('carga.index', compact('cargas'));
 }