Laravel Eloquent ORM: Accessing a specific cell of table

Solution:

Figured I’d put this up as answer for anyone else that comes looking –

->get() returns a collection, ->first() returns a model.

Either replace ->get() with ->first(), or do $user->first()->email.