feature/main20240421
guojia 7 months ago
parent 6c7b1ae4c0
commit c9d99f7975
  1. 14
      app/common/model/Merchant.php

@ -71,15 +71,11 @@ class Merchant extends BaseModel
*/ */
public static function detail(int $merchantId) public static function detail(int $merchantId)
{ {
try { $where = [
$list = self::withoutGlobalScope() 'merchant_id' => $merchantId,
->with(['logoImage', "licenseImage"]) 'store_id' => self::$storeId
->where('merchant_id', '=', $merchantId) ];
->find(); return static::get($where, []);
return $list ?? null;
} catch (\Exception $e) {
return null;
}
} }
/** /**

Loading…
Cancel
Save