/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $cats = DiagnosisSecondaryCategory::with('primaryCat')->get();
     return view('diagnosis_secondary_categories.index', compact('cats'));
 }