lshorz/laravel-identicon

Laravel identicon Package

Maintainers

Package info

github.com/lshorz/laravel-identicon

Type:package

pkg:composer/lshorz/laravel-identicon

Statistics

Installs: 15

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2021-06-03 07:15 UTC

This package is auto-updated.

Last update: 2026-03-01 00:56:50 UTC


README

Create identcion avatar for Laravel

perview

Preview

Installation

$ composer require "lshorz/laravel-identicon":"dev-master"

Example

Display image

Identicon::identiconImage('user');

or use helper

identicon_image('Hello');
identicon_base64('username', 200);

Get the base64 uri

<img src="{!! Identicon::identiconBase64('user', 120, '#FFFFFF', 0.08) !!}" />