Member.php 435 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Notifications\Notifiable;
  4. use Illuminate\Foundation\Auth\User as Authenticatable;
  5. use Spatie\Permission\Traits\HasRoles;
  6. use App\Notifications\ResetPasswordNotification;
  7. class Member extends Authenticatable
  8. {
  9. protected $table = 'members';
  10. protected $fillable = ['phone','name','password','avatar','remember_token','uuid'];
  11. protected $hidden = ['password','remember_token'];
  12. }