mpociot / laravel-firebase-sync

Synchronize your Eloquent models with a Firebase Realtime Database.
http://marcelpociot.com/blog/2016-06-20-synchronise-laravel-eloquent-models-with-firebase
265 stars 70 forks source link

Is it possible to only save certain fields without using visible / hidden #4

Closed kiwo12345 closed 7 years ago

kiwo12345 commented 7 years ago

I wonder if its possible to only save/push certain fields to firebase without using visible / hidden.

In my table I would only like to save "id" and "c_value" to firebase.

mpociot commented 7 years ago

You can now override the traits getFirebaseSyncData method and let it return an array containing what you want to send to Firebase.