定制 mennovanhout/laravel-model-constants 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

mennovanhout/laravel-model-constants

Composer 安装命令:

composer require mennovanhout/laravel-model-constants

包简介

This package creates constants for column names, this can then be used instead of strings to reduce typo's errors and improve coding with your IDE

README 文档

README

This package will generate constant files for your models to reduce typo's and the need of debugging to find out what attributes are available.

Benefits

  1. This package is ready to be installed and to forget about, no maintenance or commands you have to learn.
  2. This packages listens to the Laravel migrations ended event (Files automatically get updated/generated).
  3. When a column is removed you will get IDE errors.
  4. Fewer typo's.
  5. These constants are widely available throughout your whole codebase instead of having to type string.
  6. This package is created with all design patterns in mind. Whether you use domain driven design or Laravels default approach.

How to install it

composer require mennovanhout/laravel-model-constants

How to use it

This packages hooks into Laravels migration system and will generate the files after each migration or batch of migrations.

You can run it manually with: artisan model:constants.

If you want to remove files generated by this packages you can do that with: artisan model:constants-clean.

Example: Generated constant file

<?php

namespace Domain\Authentication\Models;

use MennoVanHout\LaravelModelConstants\Types\ModelAttributes;

class UserAttributes extends ModelAttributes
{
	 const ID = 'id';
	 const NAME = 'name';
	 const EMAIL = 'email';
	 const EMAIL_VERIFIED_AT = 'email_verified_at';
	 const PASSWORD = 'password';
	 const REMEMBER_TOKEN = 'remember_token';
	 const CREATED_AT = 'created_at';
	 const UPDATED_AT = 'updated_at';
}

Example Model

<?php

namespace Domain\Authentication\Models;

class User extends Authenticatable
{
    use HasApiTokens, HasFactory, Notifiable;

    protected $fillable = [
        UserAttributes::NAME,
        UserAttributes::EMAIL,
        UserAttributes::PASSWORD,
    ];

    protected $hidden = [
        UserAttributes::PASSWORD,
        UserAttributes::REMEMBER_TOKEN,
    ];

    protected $casts = [
        UserAttributes::EMAIL_VERIFIED_AT => 'datetime',
    ];
}

Todo:

  • Add config file.
  • Be able to put the generated constant files in another directory.
  • Add an option to also generated relations in the constants.
  • Add an option to also generated custom attributes in the constants.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-03-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固