This commit is contained in:
TL 2022-07-05 10:40:35 +08:00
parent 7a56083e3e
commit e3335cfb26
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class AddressRepo
$customer = CustomerRepo::find($customer);
}
if ($customer) {
return $customer->addresses()->with('country')->get();
return $customer->addresses()->with('country', 'zone')->get();
}
}
}