123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace App;
- use App\Search\Traits\ResumeSearchable;
- use Illuminate\Notifications\Notifiable;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- class User extends Authenticatable
- {
- use Notifiable,ResumeSearchable;
-
- protected $fillable = [
- 'name', 'email', 'password',
- ];
-
- protected $hidden = [
- 'password', 'remember_token',
- ];
- }
|