laravel5.8 Models
Posted cbugs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel5.8 Models相关的知识,希望对你有一定的参考价值。
<?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的主要内容,如果未能解决你的问题,请参考以下文章