This commit is contained in:
TL 2022-07-05 10:44:50 +08:00
parent 33887a3cdf
commit 2842005daa
1 changed files with 1 additions and 1 deletions

View File

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