承接 marispro/nova-vue-avatar 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

marispro/nova-vue-avatar

最新稳定版本:0.6

Composer 安装命令:

composer require marispro/nova-vue-avatar

包简介

Vue Avatar (https://eliep.github.io/vue-avatar/) Field wrapper for Laravel Nova (https://nova.laravel.com/)

README 文档

README

Latest Version on Github Total Downloads

Vue Avatar wrapper for Laravel Nova

Screenshot

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;
}),

统计信息

  • 总下载量: 15.59k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-01-08