//这是设置会话变量calles sport_id的ajax调用。
public function searchAthlete(Request $request)
{
if($request->ajax()){
$id = $request->id;
Session::put('sport_id',$id);
return response()->json(Session::get('sport_id'));
}
}