centrex/laravel-uuid 问题修复 & 功能扩展

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

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

centrex/laravel-uuid

最新稳定版本:v1.2.0

Composer 安装命令:

composer require centrex/laravel-uuid

包简介

Add uuid with model in laravel

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Auto-generates a UUID v4 on model creation, sets it as the route key, and provides a query scope for UUID lookups.

Installation

composer require centrex/laravel-uuid

Usage

1. Add the column to your migration

$table->uuid('uuid')->unique();

2. Add the trait to your model

use Centrex\LaravelUuid\HasUuid;

class Order extends Model
{
    use HasUuid;
}

A UUID is automatically generated on creating if the uuid column is present and empty.

3. Route model binding

The trait overrides getRouteKeyName() to return 'uuid', so route model binding works out of the box:

// routes/web.php
Route::get('/orders/{order}', [OrderController::class, 'show']);
// URL: /orders/550e8400-e29b-41d4-a716-446655440000

4. Query scope

Order::uuid('550e8400-e29b-41d4-a716-446655440000')->first();

Custom column name

Override $uuid_column on the model or publish the config:

class Order extends Model
{
    use HasUuid;

    protected $uuid_column = 'public_id';
}
php artisan vendor:publish --tag="laravel-uuid-config"

Testing

composer test        # full suite
composer test:unit   # pest only
composer test:types  # phpstan
composer lint        # pint

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-11-20