ItSolutionStuff.com

Laravel Get Gravatar Image Example

By Hardik Savani β€’ November 5, 2023
Laravel

Hey Folks,

In this quick example, let's see laravel gravatar helper. let’s discuss about laravel gravatar image. let’s discuss about thomaswelton laravel gravatar. we will help you to give an example of gravatar laravel example.

Gravatar is a service that provide unique globally avatars and integrated it into their WordPress.com blogging platform. If you don't have avatar image then you can get Gravatar src image from thier email if it register on WordPress.com. So if you want to implement in your laravel application then it is very easy. There are several package for Gravatar image for laravel, but we will use creativeorange/gravatar package that is i think better.

First fire following command on your terminal.

Step 1: Installation creativeorange/gravatar Package

composer require creativeorange/gravatar

After install this package, Now open config/app.php file and add service provider and aliase.

config/app.php

'providers' => [

....

Creativeorange\Gravatar\GravatarServiceProvider::class

],

'aliases' => [

....

'Gravatar' => Creativeorange\Gravatar\Facades\Gravatar::class,

],

ok, now we can use Gravatar in our blade file like this way:

Use Gravatar In Blade File

<img src="{{ Gravatar::get('itsolutionstuff@gmail.com') }}">

Try this it will help you and for more information click here: laravel-gravatar.

I hope it can help you...

ge

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Get Current Date Time and Day in Laravel?

Read Now β†’
β˜…

How to Get Random Records from Database in Laravel?

Read Now β†’
β˜…

Laravel 10 Import Large CSV File into Database Example

Read Now β†’
β˜…

Laravel Login and Registration using Ajax Tutorial

Read Now β†’
β˜…

Laravel Install Tailwind CSS Example

Read Now β†’
β˜…

How to Add Google Map in Laravel?

Read Now β†’
β˜…

Laravel Fetch Data using Ajax Example

Read Now β†’
β˜…

How to Add Password Protection for PDF File in Laravel?

Read Now β†’
β˜…

How to Get Last Week Data in Laravel?

Read Now β†’
β˜…

How to Get Last 12 Months Data in Laravel?

Read Now β†’
β˜…

Laravel Amazon S3 File Upload Tutorial

Read Now β†’
β˜…

How to Generate Random Unique Number in Laravel?

Read Now β†’
β˜…

Laravel Custom Forgot & Reset Password Example

Read Now β†’