123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace App;
- use Illuminate\Contracts\Auth\MustVerifyEmail;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- use Illuminate\Notifications\Notifiable;
- class User extends Authenticatable
- {
- use Notifiable;
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $fillable = [
- 'first_name',
- 'last_name',
- 'name',
- 'nationality',
- 'dob',
- 'gender',
- 'email',
- 'password',
- 'phone_number',
- 'university_name',
- 'department',
- 'designation',
- 'uni_website',
- 'user_type',
- 'ref_no',
- 'others_department',
- 'is_education',
- 'is_publication',
- 'is_test_score',
- 'is_work_experience',
- 'admin_invite_id',
- 'is_available',
- 'status',
- 'apply_status',
- 'register_type',
- 'sign_up',
- 'remember_token',
- 'email_verification',
- 'email_verified_at',
- 'registered_date',
- 'invitation_date',
- ];
- /**
- * The attributes that should be hidden for arrays.
- *
- * @var array
- */
- protected $hidden = [
- 'password', 'remember_token',
- ];
- /**
- * The attributes that should be cast to native types.
- *
- * @var array
- */
- protected $casts = [
- 'email_verified_at' => 'datetime',
- ];
- public function country_name()
- {
- return $this->belongsTo(Country::class, 'nationality', 'id');
- }
- public function department_name()
- {
- return $this->belongsTo('App\Models\Department', 'department');
- }
- public function university()
- {
- return $this->belongsTo('App\Models\University', 'university_id');
- }
- }
|