forked from s421507/eOSP2
1
0
Fork 0
eOSP2/app/User.php

46 lines
908 B
PHP
Raw Normal View History

2019-07-11 23:55:51 +02:00
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Model;
2019-08-30 02:12:27 +02:00
use Illuminate\Foundation\Auth\User as Authenticatable;
2019-07-11 23:55:51 +02:00
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2019-08-30 02:12:27 +02:00
'name', 'email', 'password', 'testowa'
2019-07-11 23:55:51 +02:00
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
2019-08-30 02:12:27 +02:00
public function setPasswordAttribute($password)
{
$this->attributes['password'] = bcrypt($password);
}
2019-07-11 23:55:51 +02:00
}