/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     //
     $centro = ['centro' => centro::lists('Descripcion', 'id')];
     return \View::make('coordinacion/new', $centro);
 }