User.php 536 Bytes
Newer Older
Juliper committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?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
Juliper committed
16
     *
Juliper committed
17
     */
Juliper committed
18

Juliper committed
19
    protected $fillable = [
Juliper committed
20
        'name', 'email', 'password','username','role'
Juliper committed
21 22 23 24 25 26 27 28 29 30 31
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}