/**
  * Display a listing of the resource.
  * @return Response
  */
 public function index()
 {
     $orders = OrderChangeDepartment::with('student', 'fromDep', 'toDep');
     $orders = $orders->paginate(20);
     $specialties = specialty::pluck('name', 'id');
     return view('orders::changeDepartment.index', compact('orders', 'specialties'));
 }