/**
  * Show all the available albums
  *
  * @return Response
  */
 public function index()
 {
     $albums = Album::with('photos')->has('photos')->orderBy('created_at')->paginate(5);
     $photos_to_show = 8;
     return view('albums.index', compact('albums', 'photos_to_show'));
 }