*/ protected $fillable = [ 'code', 'name', 'foreign_name', 'cadastral_code', 'postal_code', 'prefix', 'email', 'pec', 'phone', 'fax', 'latitude', 'longitude' ]; /** * Get the province */ public function province(): BelongsTo { return $this->belongsTo(PlaceProvince::class); } }