Closed ngangchill closed 7 years ago
thanks for the great work.
im using your library to sync eloquent model with firebase. but when i run , it is getting duplicate ( 2 row) data in mysql database but no data in firebase database.
Model:
`class Todo extends Model {
use SyncsWithFirebase; protected $table = 'todos'; protected $fillable = ['task', 'is_done']; protected $visible = ['id', 'task', 'is_done'];
}`
Todo::create([ 'task' => 'double?', 'is_done' => TRUE ]);
thanks for the great work.
im using your library to sync eloquent model with firebase. but when i run , it is getting duplicate ( 2 row) data in mysql database but no data in firebase database.
Model:
`class Todo extends Model {
}`
Controller
Todo::create([ 'task' => 'double?', 'is_done' => TRUE ]);