function getReports()
 {
     $reports = Report::orderBy("id", "DESC")->paginate(30);
     return view("manager/contents/report/index")->with("reports", $reports);
 }