123456789101112131415 |
- <?php
- namespace App;
- use Illuminate\Contracts\Auth\MustVerifyEmail;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- use Illuminate\Notifications\Notifiable;
- class User extends Authenticatable
- {
- protected $fillable = [
- 'name', 'username', 'сompetence', 'position', 'password', 'token'
- ];
- }
|