标签:assign builder laravel col fill data 继承 ext types
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
//Authenticatable 继承
//vendor\laravel\framework\src\Illuminate\Database\Eloquent\Builder.php 数据库的方法都继承了
class User extends Authenticatable
{
use Notifiable;
protected $table = "users";
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
‘name‘, ‘password‘,
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
‘password‘
];
public function setPasswordAttribute($value){
$this->attributes[‘password‘] = bcrypt($value);
}
/**
* The attributes that should be cast to native types.
*
* @var array
*/
// protected $casts = [
// ‘email_verified_at‘ => ‘datetime‘,
// ];
}
标签:assign builder laravel col fill data 继承 ext types
原文地址:https://www.cnblogs.com/cbugs/p/11246277.html