public function index()
 {
     $doctors = Doctor::orderBy('number')->get();
     return View::make('doctors', ['doctors' => $doctors]);
 }