后台顾客管理

This commit is contained in:
TL 2022-06-30 10:15:10 +08:00
parent eca27b0966
commit 2bf68bd195
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class CustomerGroupRepo
public static function list()
{
$builder = CustomerGroup::query();
$builder = CustomerGroup::query()->with('description');
$groups = $builder->get();
return $groups;