Share links exist on almost every page in every project, creating the code for these share links over and over again can be a pain in the ass. With Laravel Share, you can generate these links in just seconds in a way tailored for Laravel. You can install the package via composer: composer require jorenvanhocht/laravel-share
Share::page('http://jorenvanhocht.be')->facebook(); Share::page('http://jorenvanhocht.be', 'Your share text can be placed here')->twitter(); Share::page('http://jorenvanhocht.be', 'Your share text can be placed here')->reddit(); Share::page('http://jorenvanhocht.be', 'Share title')->linkedin('Extra linkedin summary can be passed here')
If want multiple share links for (multiple) providers you can just chain the methods like this.