mennovanhout/laravel-model-constants
最新稳定版本:v0.9.5
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
- This package is ready to be installed and to forget about, no maintenance or commands you have to learn.
- This packages listens to the Laravel migrations ended event (Files automatically get updated/generated).
- When a column is removed you will get IDE errors.
- Fewer typo's.
- These constants are widely available throughout your whole codebase instead of having to type string.
- 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.
统计信息
- 总下载量: 466
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-14