jncinet/qihucms-qualification is a Laravel package for qihucms user qualification..
It currently has 0 GitHub stars and 13 downloads on Packagist (latest version 1.0.1).
Install it with composer require jncinet/qihucms-qualification.
Discover more Laravel packages by jncinet
or browse all Laravel packages to compare alternatives.
Last updated
$ composer require jncinet/qihucms-qualification
$ php artisan migrate
$ php artisan vendor:publish --provider="Qihucms\Qualification\QualificationServiceProvider"
...
use Qihucms\Qualification\Models\HasQualification
...
class User extends Authenticatable
{
use HasQualification;
...
}
qualification/pasqualification/cos{
"real_name": "张三",
"id_card_no": "4324324324",
"files": ['图片地址1','图片地址2'],
}
{
"user_id": 1,
"real_name": "张三",
"id_card_no": "3424324234",
"files": ['图片地址1','图片地址2'],
"status": 1,
"created_at": "2分钟前",
"updated_at": "1分钟前",
}
{
"user_id": 1,
"real_name": "张三",
"id_card_no": "3424324234",
"files": ['图片地址1','图片地址2'],
"status": 1,
"created_at": "2分钟前",
"updated_at": "1分钟前",
}
{
"company_name": "**公司",
"company_id": "342432324234",
"files": ['图片地址1','图片地址2'],
"mobile": "手机号",
"email": "邮箱",
"address": "地址",
}
{
"user_id": 1,
"company_name": "**公司",
"company_id": "342432324234",
"files": ['图片地址1','图片地址2'],
"mobile": "手机号",
"email": "邮箱",
"address": "地址",
"status": 1,
"created_at": "2分钟前",
"updated_at": "1分钟前",
}
{
"user_id": 1,
"company_name": "**公司",
"company_id": "342432324234",
"files": ['图片地址1','图片地址2'],
"mobile": "手机号",
"email": "邮箱",
"address": "地址",
"status": 1,
"created_at": "2分钟前",
"updated_at": "1分钟前",
}
| Field | Type | Length | AllowNull | Default | Comment | | :---- | :---- | :---- | :---- | :---- | :---- | | id | bigint | | | | | | user_id | bigint | | | | 会员ID | | real_name | varchar | 255 | | | 真实姓名 | | id_card_no | varchar | 255 | | | 身份证号 | | files | json | | Y | NULL | 证明文件 | | status | tinyint | | | 0 | 状态 | | created_at | timestamp | | Y | NULL | 创建时间 | | updated_at | timestamp | | Y | NULL | 更新时间 |
| Field | Type | Length | AllowNull | Default | Comment | | :---- | :---- | :---- | :---- | :---- | :---- | | id | bigint | | | | | | user_id | bigint | | | | 会员ID | | company_name | varchar | 255 | | | 公司名称 | | company_id | varchar | 255 | | | 统一信用代码 | | files | json | | Y | NULL | 证明文件 | | contacts | varchar | 255 | | | 联系人 | | mobile | varchar | 255 | | | 手机号 | | email | varchar | 255 | Y | NULL | 邮箱 | | address | varchar | 255 | Y | NULL | 地址 | | status | tinyint | | | 0 | 状态 | | created_at | timestamp | | Y | NULL | 创建时间 | | updated_at | timestamp | | Y | NULL | 更新时间 |