Admin.php 352 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Notifications\Notifiable;
  4. use Illuminate\Foundation\Auth\User as Authenticatable;
  5. class Admin extends Authenticatable
  6. {
  7. use Notifiable;
  8. protected $fillable = [
  9. 'name', 'rid', 'password', 'last_time',
  10. ];
  11. protected $hidden = [
  12. 'password', 'remember_token',
  13. ];
  14. }