Use mais recente com o primeiro em Laravel Eloquent
$customer->posts()->latest()->first();
Uptight Unicorn
$customer->posts()->latest()->first();
$user = User::where('mobile', Input::get('mobile'))->get();
if (!$user->isEmpty()){
$firstUser = $user->first()
}