*/ use HasUuids; protected $table = 'heirs'; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'user_id', 'name', 'ic_number', 'relationship', 'phone_number', 'address', 'is_primary', ]; /** * The attributes that should be hidden for serialization. * * @var list */ protected $hidden = [ ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'name' => 'string', 'ic_number' => 'string', 'relationship' => 'string', 'phone_number' => 'string', 'address' => 'string', 'is_primary' => 'boolean', ]; } public function user() { return $this->belongsTo(User::class); } }