/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $authUser = Auth::user();
     //if the user is an Admin, so it should make the proper research.
     $report = new MonthlyReport();
     if ($authUser->isAdmin()) {
         //Find the reports
         $reports = MonthlyReport::orderBy('status', 'asc')->orderBy('month', 'desc')->orderBy('year', 'desc')->orderBy('user_id', 'asc')->get();
     } else {
         //Find the reports
         $reports = MonthlyReport::where('user_id', $authUser->id)->orderBy('status', 'asc')->orderBy('month', 'desc')->get();
     }
     //Return to view
     return view('volunteer.monthlyreport.index', compact('reports'));
 }