Laravel Get Gravatar Image Example
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
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 Get Current Date Time and Day in Laravel?
- How to Get Random Records from Database in Laravel?
- Laravel 10 Import Large CSV File into Database Example
- Laravel Login and Registration using Ajax Tutorial
- Laravel Install Tailwind CSS Example
- How to Add Google Map in Laravel?
- Laravel Fetch Data using Ajax Example
- How to Add Password Protection for PDF File in Laravel?
- How to Get Last Week Data in Laravel?
- How to Get Last 12 Months Data in Laravel?
- Laravel Amazon S3 File Upload Tutorial
- How to Generate Random Unique Number in Laravel?
- Laravel Custom Forgot & Reset Password Example