This commit is contained in:
2026-05-26 19:31:25 +02:00
parent 45455a16c4
commit 9d796d6e41
12 changed files with 785 additions and 62 deletions

View File

@@ -13,7 +13,10 @@ class StaffRepository {
Future<List<StaffMemberModel>> getStaffMembers(String companyId) async {
final response = await _supabase
.from(Tables.staffMembers)
.select()
.select('''
*,
stores (*)
''')
.eq('company_id', companyId)
.order('name', ascending: true);