码迷,mamicode.com
首页 > 其他好文 > 详细

laravel5.8 Models

时间:2019-07-25 19:09:01      阅读:127      评论:0      收藏:0      [点我收藏+]

标签: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‘,
// ];
}

laravel5.8 Models

标签:assign   builder   laravel   col   fill   data   继承   ext   types   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!