En este momento, las selecciones se anulan entre sí.
Debe agregar una selección:
$bananafriends = IsFree::join('friendships', function($join)use($user) {
$join->on('arefree.user_id', '=', 'friendships.user_rec_id')
->where('friendships.user_send_id', '=', $user->id);
})
->select('friendships.*', 'arefree.*', 'arefree.created_at as free_created')
->get();
Ver el documento sobre selecciones:
http://laravel.com/docs/4.2/queries#selects
Si esto no funciona, házmelo saber y te ayudaré a solucionarlo.