A Blade version of Boring Avatars. Built using Laravel Blade.
Based on Boring Avatar's description,
Boring Avatars a tiny JavaScript React library that generates custom, SVG-based, round avatars from any username and color palette.
This package provides a Blade component you can use directly in your Laravel projects.
- Similar API with the React version of Boring Avatars.
composer require khaled-sadek/blade-boring-avatars- PHP: 8.2 or higher
- Laravel: 10.x, 11.x, 12.x
Note for Laravel 9.x and below users: If you're using Laravel 9.x or below, please use version 1.x of this package which supports PHP 8.1 and Laravel 7-9.
This package is set up to automatically publish to Packagist when a new Git tag is pushed. To enable this:
- Go to your Packagist account and get an API token from your tokens page.
- In your GitHub repository, go to Settings > Secrets and variables > Actions
- Add the following repository secrets:
PACKAGIST_TOKEN: Your Packagist API tokenPACKAGIST_USERNAME: Your Packagist username
After setting up these secrets, pushing a new tag prefixed with v (for example, v2.0.0) will automatically trigger a new release on Packagist.
This package auto-discovers its service provider, so no manual registration is required.
Props:
size: number- Default:
40
- Default:
name: string- Default:
"Clara Barton"
- Default:
colors: array[]- Accepts a php array of colors.
- Default:
["#92A1C6", "#146A7C", "#F0AB3D", "#C271B4", "#C20D90"]
Basic usage (with default props):
<x-avatar />With props:
<!--
view.blade.php
where $colors is a valid PHP array
-->
<x-avatar size="80" name="Khaled Sadek" :colors="$colors" />Backward compatibility: the PascalCase tag <x-Avatar /> remains available.
Credits to @hihayk (GitHub) and @josep_martins (GitHub) for creating the original Boring Avatars library at boringdesigners!