How to Add Social Media Share Buttons in Laravel?
Hi,
In this tutorial, i will show you laravel social media share buttons. I’m going to show you about social media share buttons laravel. We will look at example of how to add social media share buttons in laravel. if you have question about laravel social share buttons then i will give simple example with solution. Let's get started with jorenvanhocht laravel share example.
Here we will use jorenvanhocht/laravel-share composer package for adding social media sharing buttons in laravel project. you can easily use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11. jorenvanhocht/laravel-share provide social sharing option for facebook, twitter, linkedin, telegram, whatsapp and reddit.
Let's see step by step bellow simple example and will get bellow layout:
Preview:
Step 1: Install jorenvanhocht/laravel-share Package
in first step, we need install jorenvanhocht/laravel-share composer package so let's use bellow command to install:
composer require jorenvanhocht/laravel-share
after installing successfully, we need to publish configuration file using bellow command:
php artisan vendor:publish --provider="Jorenvh\Share\Providers\ShareServiceProvider"
Above command will create laravel-share.php config file on config folder and share.js in public/js/ folder.
Step 2: Create Route
In this is step we need to create some routes for social share example view.
routes/web.php
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\SocialShareController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('social-share', [SocialShareController::class, 'index']);
Step 3: Create Controller
in this step, we need to create SocialShareController and add following code on that file:
app/Http/Controllers/SocialShareController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Post;
class SocialShareController extends Controller
{
/**
* Write code on Method
*
* @return response()
*/
public function index()
{
$shareButtons = \Share::page(
'https://www.itsolutionstuff.com',
'Your share text comes here',
)
->facebook()
->twitter()
->linkedin()
->telegram()
->whatsapp()
->reddit();
$posts = Post::get();
return view('socialshare', compact('shareButtons', 'posts'));
}
}
Step 4: Create Blade Files
here, we need to create blade files for socialshare. so let's create one by one files:
here will code for navbar links:
resources/views/socialshare.blade.php
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Implement Social Share Button in Laravel - ItSolutionStuff.com</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<style>
.social-btn-sp #social-links {
margin: 0 auto;
max-width: 500px;
}
.social-btn-sp #social-links ul li {
display: inline-block;
}
.social-btn-sp #social-links ul li a {
padding: 15px;
border: 1px solid #ccc;
margin: 1px;
font-size: 30px;
}
table #social-links{
display: inline-table;
}
table #social-links ul li{
display: inline;
}
table #social-links ul li a{
padding: 5px;
border: 1px solid #ccc;
margin: 1px;
font-size: 15px;
background: #e3e3ea;
}
</style>
</head>
<body>
<div class="container mt-4">
<h2 class="mb-5 text-center">Laravel Social Share Buttons Example - ItSolutionStuff.com</h2>
<div class="social-btn-sp">
{!! $shareButtons !!}
</div>
<table class="table">
<tr>
<th>List Of Posts</th>
</tr>
@foreach($posts as $post)
<tr>
<td>
{{ $post->title }}
{!! Share::page(url('/post/'. $post->slug))->facebook()->twitter()->whatsapp() !!}
</td>
</tr>
@endforeach
</table>
</div>
</body>
</html>
Now we are ready to run our example. so run bellow command so quick run:
php artisan serve
Now you can open bellow URL on your browser:
localhost:8000/social-share
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Create Dynamic Navigation Bar in Laravel?
- Deploy Laravel Vapor Project with Docker Tutorial
- How to Get Online Users in Laravel?
- How to Image Upload in Laravel Vapor?
- How to Deploy Project with Laravel Vapor?
- Laravel Http Curl Get Request Example
- Laravel Sweet Alert Confirm Delete Example
- How to Add Country List in Laravel?
- How to Restore Deleted Records in Laravel?
- Laravel 8 Firebase Web Push Notification Example
- Laravel 8 Inertia JS CRUD with Jetstream & Tailwind CSS
- Laravel 8 Queue Step by Step Tutorial Example