binafy/laravel-score 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

binafy/laravel-score

最新稳定版本:v1.1.0

Composer 安装命令:

composer require binafy/laravel-score

包简介

Laravel Score is a lightweight and flexible package for adding scoring functionality to any Eloquent model in a Laravel application

README 文档

README

laravel-score

PHP Version Require Latest Stable Version Total Downloads License Passed Tests Ask DeepWiki

Introduction

A comprehensive Laravel package to implement scoring systems effortlessly. Whether you're building leaderboards, calculating performance metrics, or managing gamification features, Laravel Score provides an intuitive API to define, calculate, and manage scores seamlessly. Perfect for applications requiring dynamic and flexible scoring mechanisms.

Key Features:

  • Simple integration with Eloquent models.
  • Support for customizable scoring rules.
  • Designed for performance and scalability.
  • Extensible and developer-friendly.

Installation

You can install the package with Composer.

composer require binafy/laravel-score

Publish

If you want to publish a config file you can use this command:

php artisan vendor:publish --tag="laravel-score-config"

If you want to publish the migrations you can use this command:

php artisan vendor:publish --tag="laravel-score-migrations"

For convenience, you can use this command to publish config, migration, and ... files:

php artisan vendor:publish --provider="Binafy\LaravelScore\Providers\LaravelScoreServiceProvider"

After publishing, run the php artisan migrate command.

Usage

To enable scoring functionality, you need to use two traits:

On the model giving the score (e.g. User):

use Binafy\LaravelScore\Traits\InteractWithScore;
use \Illuminate\Database\Eloquent\Model;

class User extends Model
{
    use InteractWithScore;
}

On the model receiving the score (e.g. Photo):

use Binafy\LaravelScore\Traits\Scoreable;
use Illuminate\Database\Eloquent\Model;

class Photo extends Model
{
    use Scoreable;
}

Add Score

To give a positive score to a scoreable model:

$user->addScore(
    Model $scoreable,
    int $score = 1,
    int|null $userId = null
);

Add Negative Score

To assign a negative score:

$user->addNegativeScore(
    Model $scoreable,
    int|null $userId = null
);

Checking Scores

You can check whether a model has already been scored by a specific user:

$user->hasScored(
    Model $scoreable,
    int|null $userId = null
): bool;

$photo->isScored(
    ?int $userId = null
): bool;

Count Scores

To get the total number of scores for a model:

$photo->getScoresCount(): int;

Delete score

To remove an existing score:

$user->removeScore(Model $scoreable): bool;

$photo->removeScore(?int $userId = null): bool;

Contributors

Thanks to all the people who contributed. Contributors.

Security

If you discover any security-related issues, please email binafy23@gmail.com instead of using the issue tracker.

Changelog

The changelog can be found in the CHANGELOG.md file of the GitHub repository. It lists the changes, bug fixes, and improvements made to each version of the Laravel User Monitoring package.

License

The MIT License (MIT). Please see License File for more information.

Star History

Star History Chart

Donate

If this package is helpful for you, you can buy a coffee for me :) ❤️

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-11-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固