Lecturize / Laravel-Addresses

Simple address and contact management for Laravel.
MIT License
197 stars 39 forks source link

the "properties" column in Address/Contact #33

Closed sprklinginfo closed 1 year ago

sprklinginfo commented 1 year ago

Both Address and Contact Model have a "properties" column but don't seem to be used. what is the purpose of it or how could we use it? Thanks.

AlexanderPoellmann commented 1 year ago

You could use that field to add any meta data you like, for example you could store an external reference (for some other software you use) here. The field casts to an array.

sprklinginfo commented 1 year ago

got it. thank you!