Another option is to use firstWhere
firstWhere
$player = Account::where('playerNo', 99)->first();
is the same as
$player = Account::firstWhere('playerNo', 99);