$users here will be an Eloquent\Collection object so you have more options available to you than a simple PHP array. Have a look here – http://laravel.com/api/class-Illuminate.Database.Eloquent.Collection.html
You can fetch a specific user from the collection using an id like so –
$user = $users->find(1);
$user = $users->find(9);
// etc.