Skip to content

Instantly share code, notes, and snippets.

@tnylea
Created December 6, 2016 18:24
Show Gist options
  • Save tnylea/1b86a5c7d3e78354cf69c10d4ed65fde to your computer and use it in GitHub Desktop.
Save tnylea/1b86a5c7d3e78354cf69c10d4ed65fde to your computer and use it in GitHub Desktop.
Social Share for Laravel apps
<ul>
<li class="facebook"><a href="https://www.facebook.com/sharer/sharer.php?u=<?= Request::url() ?>" target="_blank" title="Share on Facebook" onclick="javascript:window.open(this.href, '_blank', 'menubar=no,toolbar=no,resizable=no,scrollbars=no,height=400,width=600');return false;"><i class="fa fa-facebook"></i></a></li>
<li class="twitter"><a href="https://twitter.com/intent/tweet?url=<?= Request::url() ?>&text=<?= $title ?>" data-url="<?= Request::url() ?>" title="Share on Twitter"><i class="fa fa-twitter" data-url="<?= Request::url() ?>"></i></a></li>
<li class="googleplus"><a href="https://plus.google.com/share?url=<?= Request::url() ?>" target="_blank" title="Share on Google" onclick="javascript:window.open(this.href, '_blank', 'menubar=no,toolbar=no,resizable=no,scrollbars=no,height=400,width=600');return false;"><i class="fa fa-google-plus"></i></a></li>
<li class="pinterest"><a href="//www.pinterest.com/pin/create/button/?url=<?= Request::url() ?>&media=<?= $image_url ?>&description=<?= $description ?>" title="Share on Pinterest" target="_blank" onclick="javascript:window.open(this.href, '_blank', 'menubar=no,toolbar=no,resizable=no,scrollbars=no,height=400,width=600');return false;"><i class="fa fa-pinterest"></i></a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment