Product Management Module
ng g c admin/product-forminput add on (bootstrap)
<div class="input-group">
<span class="input-group-addon">$</span>
<input id="price" type="number" class="form-control">
</div>firebase db service
providers: [ ... CategoryService ],constructor(private db: AngularFireDatabase) { } getCategories() { return this.db.list('/categories'); }categories$; constructor(categoryService: CategoryService) { this.categories$ = categoryService.getCategories(); }
Save Form to DB
Validation
Last updated