Integrate Social Share Feature In Website Using Laravel

Social media nowadays play a vital role in todays life. Most of the people pass time in social media. While developing website we should keep in mind to integrate social media sharing features. Here we will demonstrate how to integrate social media sharing feature in laravel based website sdfsdf

create laravel project
composer create-project --prefer-dist laravel/laravel demoproject

create blade file for view html 

resources/views/view-post.blade.php

edit blade file and paste below content

Here below we have used bootstrap. Use required design according to need


Social share icons should look like below


You can add below css in your style file if is required
.btn-social {
    font-size: 16px;
    padding: 10px 11px;
    border-radius: 30px;
    margin-right: 10px;
}

.btn-social i {
    margin-right: 8px;
}



Tags: