12345678910111213141516171819 |
- <?php
- namespace App\Models;
- use Illuminate\Notifications\Notifiable;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- class Admin extends Authenticatable
- {
- use Notifiable;
-
- protected $fillable = [
- 'name', 'rid', 'password', 'last_time',
- ];
- protected $hidden = [
- 'password', 'remember_token',
- ];
-
- }
|