updated roster ordering

This commit is contained in:
Frank John Begornia
2023-09-22 15:04:30 +08:00
parent bcaa0e0c21
commit b5c94761e2

View File

@@ -292,6 +292,7 @@ class TeamStoreModel extends Model
$i = DB::table('roster') $i = DB::table('roster')
->where("ProductId", $productId) ->where("ProductId", $productId)
->orderBy('Name', 'ASC')
->get(); ->get();
return $i; return $i;
} }