/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($dbID, $id)
 {
     //
     $cat = \App\ImageCategory::find($id);
     return view('app.category', ['title' => $dbID, 'db' => \App\ImageDataSet::find($dbID), 'cat' => $cat, 'images' => $cat->ImageItems]);
 }