/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Landing::destroy($id);
     return redirect('/admin/landing')->with('status', 'Университет удален!');
 }