/**
  * Remove the specified res, new Schoolource from storage.
  *
  * @param  School $school
  * @return Response
  */
 public function destroy(School $school)
 {
     $this->authorize('manage', new School());
     School::destroy($school->id);
     return redirect('school');
 }