53 lines
1021 B
PHP
53 lines
1021 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use HasFactory, Notifiable;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'username',
|
|
'password',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for arrays.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
|
|
public function role(){
|
|
return $this->belongsTo(Role::class);
|
|
}
|
|
|
|
public function posts() {
|
|
return $this->hasMany(Post::class);
|
|
}
|
|
|
|
/*
|
|
* Mutators
|
|
*/
|
|
|
|
// public function setPasswordAttribute($password) {
|
|
// $this->attributes['password'] = Hash::make($password);
|
|
// }
|
|
}
|