#
->where(function($query) {
$query->where('url', 'like', '%facebook.com%');
$query->orwhere('url', 'like', '%twitter.com%');
$query->orWhere('url', 'like', '%instagram.com%');
})
->where('url', 'like', '%facebook.com%')
->orwhere('url', 'like', '%twitter.com%')
->orWhere('url', 'like', '%instagram.com%')