Try calling toDateString() on the Carbon object. You also don't need the '=' argument, that's the default.
GetRecords::where("student_id",$id)->where("record", Carbon::parse($selected_date)->toDateString())->first();
If that doesn't work try calling whereDate, instead of where. Although that shouldn't be necessary.