/**
  * Display listing of the treatments.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $treatments = Treatment::with('collections')->get();
     return view('pages.treatments.index', compact('treatments'));
 }