/**
  * Remove the specified post from storage.
  *
  * @param  int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     Post::destroy($id);
     return redirect()->route('admin.posts.index');
 }