marispro / nova-vue-avatar
Vue Avatar (https://eliep.github.io/vue-avatar/) Field wrapper for Laravel Nova (https://nova.laravel.com/)
Installs: 12 228
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.1.0
README
Vue Avatar wrapper for Laravel Nova
Installation
composer require marispro/nova-vue-avatar
Usage
<?php
namespace App\Nova;
use Marispro\NovaVueAvatar\NovaVueAvatar as Avatar;
class User extends Resource
{
public function fields()
{
return [
Avatar::make('Name', 'Avatar'), // by default field - Name, column name - Avatar (optional)
->rounded(false) // disable rounded corners (optional, default: true)
->size() // set avatar size (optional, default: 40)
->image('https://eliep.github.io/vue-avatar/static/darth-vader.png'), // specify avatar as image (optional)
->color('#fff') // specify text color (optional, default: white)
];
}
}
Computed value
Avatar::make(function($user){
return $user->firstname . ' ' . $user->lastname;
}),