*/ protected $fillable = [ 'title', 'type', 'street', 'house', 'flat', 'stage', 'note', 'city_id', 'user_id', ]; public function user(): BelongsTo { return $this->belongsTo(User::class); } public function city(): BelongsTo { return $this->belongsTo(City::class); } }