2018-10-08 22:31:58 +02:00

40 lines
672 B
PHP
Executable File

<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* User is admin.
*
* @return integer
*/
public function getAdminAttribute()
{
return $this->role === 'admin';
}
}