首页 > 其他 > 详细

laravel5.8 Models

时间:2019-07-25 19:10:21      阅读:46      评论:0      收藏:0      [点我收藏+]
<?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‘,
// ];
}

laravel5.8 Models

原文:https://www.cnblogs.com/cbugs/p/11246277.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!