/
vr5
/
monobot
Обзор
Документация
Войти
/
vr5
/
monobot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
app/User.php
29 строк
511 B
Alexander Volosenkov
initial commit
01 апр 2018, 22:57
01 апр 2018, 22:57
ec42c4a
Код
Авторство
О чём код?
<?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', ]; }