/**
  * Remove the specified resource from storage.
  *
  * @param  Department $department
  * @return Response
  */
 public function destroy(Department $department)
 {
     $this->department->destroy($department);
     flash()->success(trans('core::core.messages.resource deleted', ['name' => trans('staff::departments.title.departments')]));
     return redirect()->route('admin.staff.department.index');
 }