User.php 318 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Contracts\Auth\MustVerifyEmail;
  4. use Illuminate\Foundation\Auth\User as Authenticatable;
  5. use Illuminate\Notifications\Notifiable;
  6. class User extends Authenticatable
  7. {
  8. protected $fillable = [
  9. 'name', 'username', 'сompetence', 'position', 'password', 'token'
  10. ];
  11. }