public function postComment(PostCommentAlbumRequest $request, $user, $id)
 {
     $data = ['comment_status' => 1, 'user_id' => Auth::user()->id, 'album_id' => $id];
     if (Comment_album::create(array_merge($data, $request->only('comment_content')))) {
         return redirect()->route('album.show', [$user, $id])->with(['message' => 'Your comment has been post']);
     }
     return redirect()->route('album.show', [$user, $id])->withErrors('Unexpected error!');
 }