What is the best way to retrieve a record based on a unique value?
I know I can, for example, use:
$person = Person::where('fullname', "John Johnson")->first()
Since the fullname only contains unique values, is there a more efficient way similar to when you are using Person::find($id)?