79136842

Date: 2024-10-29 10:48:50
Score: 1
Natty:
Report link

Another option is to use firstWhere

$player = Account::where('playerNo', 99)->first();

is the same as

$player = Account::firstWhere('playerNo', 99);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dvicemuse