app/Models/User.php
<?php
namespace App\Models;
use App\Models\Mark;
use App\Models\StudentParentInfo;
use App\Models\StudentAcademicInfo;
use Spatie\Permission\Traits\HasRoles;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use HasRoles, HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'first_name',
'last_name',
'email',
'password',
'gender',
'nationality',
'phone',
'address',
'address2',
'city',
'zip',
'photo',
'birthday',
'religion',
'blood_type',
'role',
];
/**
* 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',
];
/**
* Get the parent_info.
*/
public function parent_info()
{
return $this->hasOne(StudentParentInfo::class, 'student_id', 'id');
}
/**
* Get the academic_info.
*/
public function academic_info()
{
return $this->hasOne(StudentAcademicInfo::class, 'student_id', 'id');
}
/**
* Get the marks.
*/
public function marks()
{
return $this->hasMany(Mark::class, 'student_id', 'id');
}
}