🍲dfcv🏰dd⋉(● ∸ ●)⋊@% PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!PK2W]R@\OrderDetail.phpnu[belongsTo(Order::class); } public function product() { return $this->belongsTo(Product::class); } public function pickup_point() { return $this->belongsTo(PickupPoint::class); } public function refund_request() { return $this->hasOne(RefundRequest::class); } public function affiliate_log() { return $this->hasMany(AffiliateLog::class); } } PK2W]%ZCustomerPackagePayment.phpnu[belongsTo(User::class); } public function customer_package(){ return $this->belongsTo(CustomerPackage::class); } } PK2W]JAffiliateConfig.phpnu[belongsTo(Conversation::class); } public function user(){ return $this->belongsTo(User::class); } } PK2W];FirebaseNotification.phpnu[belongsTo(User::class); } } PK2W]/~SmsTemplate.phpnu[belongsTo(User::class); } public function product() { return $this->belongsTo(Product::class); } public function address() { return $this->belongsTo(Address::class); } public function scopeActive($query) { return $query->where('status', 1); } } PK2W]x;AttributeCategory.phpnu[pickup_point_translations->where('lang', $lang)->first(); return $pickup_point_translation != null ? $pickup_point_translation->$field : $this->$field; } public function pickup_point_translations(){ return $this->hasMany(PickupPointTranslation::class); } public function staff(){ return $this->belongsTo(Staff::class); } public function scopeIsActive($query) { return $query->where('pick_up_status', '1'); } } PK2W]BB{{SellerWithdrawRequest.phpnu[belongsTo(User::class); } public function shop() { return $this->belongsTo(Shop::class); } } PK2W]C%AffiliateLog.phpnu[belongsTo(User::class); } public function order_detail() { return $this->belongsTo(OrderDetail::class); } public function order() { return $this->belongsTo(Order::class); } } PK2W]0^(zzAuctionProductBid.phpnu[belongsTo(Product::class); } public function user() { return $this->belongsTo(User::class); } } PK2W](qProxyPayment.phpnu[belongsTo(User::class); } public function order(){ return $this->belongsTo(Order::class); } public function club_point_details(){ return $this->hasMany(ClubPointDetail::class); } } PK2W]bWCouponUsage.phpnu[belongsTo(User::class); } public function affiliate_payments() { return $this->hasMany(AffiliatePayment::class)->orderBy('created_at', 'desc')->paginate(12); } } PK2W]AffiliateStats.phpnu[belongsTo(User::class); } } PK2W]SY00CarrierRangePrice.phpnu[belongsTo(Carrier::class); } public function carrier_ranges() { return $this->belongsTo(CarrierRange::class); } public function zone() { return $this->belongsTo(Zone::class); } } PK2W]q# R\\DeliveryBoyPayment.phpnu[belongsTo(User::class); } } PK2W] *FFNotificationTypeTranslation.phpnu[belongsTo(NotificationType::class); } } PK2W]   Country.phpnu[belongsTo(Zone::class); } public function scopeIsEnabled($query) { return $query->where('status', '1'); } } PK2W]omTTWarrantyTranslation.phpnu[belongsTo(Warranty::class); } } PK2W]@+==FollowSeller.phpnu[belongsTo(Shop::class); } } PK2W]^CDeliveryHistory.phpnu[belongsTo(Order::class); } } PK2W]) Ticket.phpnu[belongsTo(User::class); } public function ticketreplies() { return $this->hasMany(TicketReply::class)->orderBy('created_at', 'desc'); } } PK2W]^9HHBrandTranslation.phpnu[belongsTo(Brand::class); } } PK2W]]TG Payment.phpnu[hasOne(Order::class, 'id', 'order_id'); } } PK2W]s}oProductTax.phpnu[hasMany(CityTranslation::class)->where('lang', $lang)->first(); return $city_translation != null ? $city_translation->$field : $this->$field; } public function city_translations(){ return $this->hasMany(CityTranslation::class); } public function country() { return $this->belongsTo(Country::class); } public function state() { return $this->belongsTo(State::class); } } PK2W]uݜ Seller.phpnu[belongsTo(User::class); } public function payments(){ return $this->hasMany(Payment::class); } public function seller_package(){ return $this->belongsTo(SellerPackage::class); } } PK2W]H>>CartProduct.phpnu[belongsTo(Product::class); } } PK2W]âu Color.phpnu[attribute_translations->where('lang', $lang)->first(); return $attribute_translation != null ? $attribute_translation->$field : $this->$field; } public function attribute_translations(){ return $this->hasMany(AttributeTranslation::class); } public function attribute_values() { return $this->hasMany(AttributeValue::class); } } PK2W]>?3 Product.phpnu[product_translations->where('lang', $lang)->first(); return $product_translations != null ? $product_translations->$field : $this->$field; } public function product_translations() { return $this->hasMany(ProductTranslation::class); } public function main_category() { return $this->belongsTo(Category::class, 'category_id'); } public function categories() { return $this->belongsToMany(Category::class, 'product_categories'); } public function frequently_bought_products() { return $this->hasMany(FrequentlyBoughtProduct::class); } public function product_categories() { return $this->hasMany(ProductCategory::class); } public function brand() { return $this->belongsTo(Brand::class); } public function user() { return $this->belongsTo(User::class); } public function orderDetails() { return $this->hasMany(OrderDetail::class); } public function reviews() { return $this->hasMany(Review::class); } public function product_queries() { return $this->hasMany(ProductQuery::class); } public function wishlists() { return $this->hasMany(Wishlist::class); } public function stocks() { return $this->hasMany(ProductStock::class); } public function taxes() { return $this->hasMany(ProductTax::class); } public function flash_deal_products() { return $this->hasMany(FlashDealProduct::class); } public function bids() { return $this->hasMany(AuctionProductBid::class); } public function thumbnail() { return $this->belongsTo(Upload::class, 'thumbnail_img'); } public function scopePhysical($query) { return $query->where('digital', 0); } public function scopeDigital($query) { return $query->where('digital', 1); } public function carts() { return $this->hasMany(Cart::class); } public function scopeIsApprovedPublished($query) { return $query->where('approved', '1')->where('published', 1); } public function last_viewed_products() { return $this->hasMany(LastViewedProduct::class); } public function warranty() { return $this->belongsTo(Warranty::class); } public function warrantyNote() { return $this->belongsTo(Note::class, 'warranty_note_id'); } public function refundNote() { return $this->belongsTo(Note::class, 'refund_note_id'); } } PK2W]= Category.phpnu[category_translations->where('lang', $lang)->first(); return $category_translation != null ? $category_translation->$field : $this->$field; } public function category_translations(){ return $this->hasMany(CategoryTranslation::class); } public function coverImage(){ return $this->belongsTo(Upload::class, 'cover_image'); } public function catIcon(){ return $this->belongsTo(Upload::class, 'icon'); } public function products() { return $this->belongsToMany(Product::class, 'product_categories'); } public function bannerImage(){ return $this->belongsTo(Upload::class, 'banner'); } public function classified_products(){ return $this->hasMany(CustomerProduct::class); } public function categories() { return $this->hasMany(Category::class, 'parent_id'); } public function childrenCategories() { return $this->hasMany(Category::class, 'parent_id')->with('categories'); } public function parentCategory() { return $this->belongsTo(Category::class, 'parent_id'); } public function attributes() { return $this->belongsToMany(Attribute::class); } public function sizeChart() { return $this->belongsTo(SizeChart::class, 'id', 'category_id'); } } PK2W]k)ooProductTranslation.phpnu[belongsTo(Product::class); } } PK2W]XQFnn Coupon.phpnu[belongsTo(User::class); } public function userCoupons() { return $this->hasMany(UserCoupon::class); } public function couponUsages() { return $this->hasMany(CouponUsage::class); } } PK2W]eQLddCombinedOrder.phpnu[hasMany(Order::class); } public function user(){ return $this->belongsTo(User::class); } } PK2W](vvPickupPointTranslation.phpnu[belongsTo(PickupPoint::class); } } PK2W]3/cc Address.phpnu[belongsTo(User::class); } public function country() { return $this->belongsTo(Country::class); } public function state() { return $this->belongsTo(State::class); } public function city() { return $this->belongsTo(City::class); } } PK2W]&!ccTicketReply.phpnu[belongsTo(Ticket::class); } public function user(){ return $this->belongsTo(User::class); } } PK2W]KtE Search.phpnu[belongsTo(Product::class); } public function frequently_bought_product() { return $this->belongsTo(Product::class, 'frequently_bought_product_id'); } } PK2W]1EmailTemplate.phpnu[stocks as $key => $stock) { $qty += $stock->qty; } return [ $product->name, $product->description, $product->added_by, $product->user_id, $product->category_id, $product->brand_id, $product->video_provider, $product->video_link, $product->unit_price, $product->unit, $qty, $product->est_shipping_days, $product->meta_title, $product->meta_description, ]; } } PK2W]9Zone.phpnu[hasMany(CarrierRangePrice::class); } } PK2W]RדU77 Carrier.phpnu[hasMany(CarrierRange::class); } public function carrier_range_prices(){ return $this->hasMany(CarrierRangePrice::class); } public function scopeActive($query) { return $query->where('status', 1); } } PK2W]#; AA Customer.phpnu[belongsTo(User::class); } } PK2W]ՕProductCategory.phpnu[belongsTo(Product::class); } public function category() { return $this->belongsTo(Category::class); } } PK2W],!1qqCustomerPackageTranslation.phpnu[belongsTo(CustomerPackage::class); } } PK2W]5y Addon.phpnu[belongsTo(User::class); } } PK2W]LzzTranslation.phpnu[belongsTo(BlogCategory::class, 'category_id'); } } PK2W]')Shop.phpnu[belongsTo(User::class); } public function seller_package(){ return $this->belongsTo(SellerPackage::class); } public function followers(){ return $this->hasMany(FollowSeller::class); } } PK2W]W< Brand.phpnu[brand_translations->where('lang', $lang)->first(); return $brand_translation != null ? $brand_translation->$field : $this->$field; } public function brand_translations() { return $this->hasMany(BrandTranslation::class); } } PK2W]oAffiliatePayment.phpnu[hasMany(PageTranslation::class)->where('lang', $lang)->first(); return $page_translation != null ? $page_translation->$field : $this->$field; } public function page_translations(){ return $this->hasMany(PageTranslation::class); } } PK2W]S$Role.phpnu[role_translations->where('lang', $lang)->first(); return $role_translation != null ? $role_translation->$field : $this->$field; } public function role_translations(){ return $this->hasMany(RoleTranslation::class); } } PK2W]SellerPackage.phpnu[hasMany(SellerPackageTranslation::class)->where('lang', $lang)->first(); return $seller_package_translation != null ? $seller_package_translation->$field : $this->$field; } public function seller_package_translations(){ return $this->hasMany(SellerPackageTranslation::class); } public function seller_package_payments() { return $this->hasMany(SelllerPackagePayment::class); } public function shop() { return $this->hasOne(Shop::class); } } PK2W]/DynamicPopup.phpnu[vrrSellerPackageTranslation.phpnu[belongsTo(SellerPackage::class); } } PK2W]>Ͷll Order.phpnu[hasMany(OrderDetail::class); } public function refund_requests() { return $this->hasMany(RefundRequest::class); } public function user() { return $this->belongsTo(User::class); } public function shop() { return $this->hasOne(Shop::class, 'user_id', 'seller_id'); } public function pickup_point() { return $this->belongsTo(PickupPoint::class); } public function carrier() { return $this->belongsTo(Carrier::class); } public function affiliate_log() { return $this->hasMany(AffiliateLog::class); } public function club_point() { return $this->hasMany(ClubPoint::class); } public function delivery_boy() { return $this->belongsTo(User::class, 'assign_delivery_boy', 'id'); } public function proxy_cart_reference_id() { return $this->hasMany(ProxyPayment::class)->select('reference_id'); } public function commissionHistory() { return $this->hasOne(CommissionHistory::class); } } PK2W]i  AppSettings.phpnu[belongsTo(Currency::class); } } PK2W].IAffiliateOption.phpnu[customer_product_translations->where('lang', $lang)->first(); return $customer_product_translations != null ? $customer_product_translations->$field : $this->$field; } public function scopeIsActiveAndApproval($query) { return $query->where('status', '1') ->where('published', '1'); } public function category() { return $this->belongsTo(Category::class); } public function subcategory() { return $this->belongsTo(SubCategory::class); } public function subsubcategory() { return $this->belongsTo(SubSubCategory::class); } public function brand() { return $this->belongsTo(Brand::class); } public function user() { return $this->belongsTo(User::class); } public function state() { return $this->belongsTo(State::class); } public function city() { return $this->belongsTo(City::class); } public function customer_product_translations() { return $this->hasMany(CustomerProductTranslation::class); } public function thumbnail() { return $this->belongsTo(Upload::class, 'thumbnail_img'); } } PK2W]־LastViewedProduct.phpnu[belongsTo(Product::class); } } PK2W]oXCustomersImport.phpnu[ $row['user_id'], ]); } } PK2W]rOtpConfiguration.phpnu[belongsTo(OrderDetail::class); } public function user() { return $this->belongsTo(User::class); } public function seller() { return $this->belongsTo(User::class, 'seller_id'); } public function order() { return $this->belongsTo(Order::class); } } PK2W]gXzzCustomerProductTranslation.phpnu[belongsTo(CustomerProduct::class); } } PK2W]GNȥClubPointDetail.phpnu[belongsTo(Product::class); } public function club_point() { return $this->belongsTo(ClubPoint::class); } } PK2W]//AppTranslation.phpnu[belongsTo(User::class); } public function role() { return $this->belongsTo(Role::class); } public function pick_up_point() { return $this->hasOne(PickupPoint::class); } } PK2W]Ro__FlashDealProduct.phpnu[belongsTo(Product::class); } } PK2W]0%% Wishlist.phpnu[belongsTo(Product::class); } }PK2W]Z]]CategoryTranslation.phpnu[belongsTo(Category::class); } } PK2W]M0MeasurementPoint.phpnu[belongsTo(Category::class); } public function products() { return $this->hasMany(Product::class); } public function subSubCategories() { return $this->hasMany(SubSubCategory::class); } } PK2W]Yc}}SellerPackagePayment.phpnu[belongsTo(User::class); } public function seller_package(){ return $this->belongsTo(SellerPackage::class); } } PK2W]<1CarrierRange.phpnu[belongsTo(Carrier::class); } public function carrier_range_prices(){ return $this->hasMany(CarrierRangePrice::class); } } PK2W]p\U%% Upload.phpnu[belongsTo(User::class); } } PK2W] |YNote.phpnu[note_translations->where('lang', $lang)->first(); return $note_translation != null ? $note_translation->$field : $this->$field; } public function note_translations() { return $this->hasMany(NoteTranslation::class); } public function user() { return $this->belongsTo(User::class); } } PK2W]rr/ESizeChartDetail.phpnu[belongsTo(City::class); } } PK2W]DQPasswordReset.phpnu[belongsTo(Product::class); } public function user(){ return $this->belongsTo(User::class,'customer_id'); } } PK2W]4iBrandsImport.phpnu[ $row['name'], 'logo' => $this->downloadLogo($row['logo']), 'slug' => preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', $row['name'])).'-'.Str::random(5), 'meta_title' => $row['meta_title'], 'meta_description' => $row['meta_description'], ]); } flash(translate('Brands imported successfully'))->success(); } public function model(array $row) { ++$this->rows; } public function downloadLogo($url) { try { $upload = new Upload; $upload->external_link = $url; $upload->type = 'image'; $upload->save(); return $upload->id; } catch (\Exception $e) { } return null; } } PK2W]hAffiliateWithdrawRequest.phpnu[belongsTo(User::class); } } PK2W]PTransaction.phpnu[hasMany(Blog::class); } } PK2W]ProductStock.phpnu[belongsTo(Product::class); } public function wholesalePrices() { return $this->hasMany(WholesalePrice::class); } } PK2W]n__DeliveryBoyCollection.phpnu[belongsTo(User::class); } } PK2W]@ Slider.phpnu[hasMany(ProductTax::class); } } PK2W]f;BusinessSetting.phpnu[belongsTo(FlashDeal::class); } } PK2W]WiOrdersExport.phpnu[order_ids = $order_ids; } public function collection() { return Order::findMany($this->order_ids); } public function headings(): array { return [ 'Order Code', 'Num. of Products', 'Customer', 'Seller', 'Amount', 'Delivery Status', 'Payment method', 'Payment Status', ]; } /** * @var Order $order */ public function map($order): array { return [ $order->code, count($order->orderDetails), $order->user != null ? $order->user->name : '', $order->shop != null ? $order->shop->name : translate('Inhouse Order'), single_price($order->grand_total), translate(ucfirst(str_replace('_', ' ', $order->delivery_status))), translate(ucfirst(str_replace('_', ' ', $order->payment_type))), translate(ucfirst($order->payment_status)), ]; } }PK2W]̎LLRoleTranslation.phpnu[belongsTo(Role::class); } } PK2W]dž Contact.phpnu[belongsTo(Product::class); } public function frequently_bought_product() { return $this->belongsTo(Product::class, 'frequently_bought_product_id'); } } PK2W]]i[[ProductsImport.phpnu[user_type == 'seller' && addon_is_activated('seller_subscription')) { if ((count($rows) + $user->products()->count()) > $user->shop->product_upload_limit || $user->shop->package_invalid_at == null || Carbon::now()->diffInDays(Carbon::parse($user->shop->package_invalid_at), false) < 0 ) { $canImport = false; flash(translate('Please upgrade your package.'))->warning(); } } if ($canImport) { foreach ($rows as $row) { $approved = 1; if ($user->user_type == 'seller' && get_setting('product_approve_by_admin') == 1) { $approved = 0; } $productId = Product::create([ 'name' => $row['name'], 'description' => $row['description'], 'added_by' => $user->user_type == 'seller' ? 'seller' : 'admin', 'user_id' => $user->user_type == 'seller' ? $user->id : User::where('user_type', 'admin')->first()->id, 'approved' => $approved, 'category_id' => $row['category_id'], 'brand_id' => $row['brand_id'], 'video_provider' => $row['video_provider'], 'video_link' => $row['video_link'], 'tags' => $row['tags'], 'unit_price' => $row['unit_price'], 'unit' => $row['unit'], 'meta_title' => $row['meta_title'], 'meta_description' => $row['meta_description'], 'est_shipping_days' => $row['est_shipping_days'], 'colors' => json_encode(array()), 'choice_options' => json_encode(array()), 'variations' => json_encode(array()), 'slug' => preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', strtolower($row['slug']))) . '-' . Str::random(5), 'thumbnail_img' => $this->downloadThumbnail($row['thumbnail_img']), 'photos' => $this->downloadGalleryImages($row['photos']), ]); ProductStock::create([ 'product_id' => $productId->id, 'qty' => $row['current_stock'], 'price' => $row['unit_price'], 'sku' => $row['sku'], 'variant' => '', ]); if($row['multi_categories'] != null){ foreach (explode(',', $row['multi_categories']) as $category_id) { ProductCategory::insert([ "product_id" => $productId->id, "category_id" => $category_id ]); } } } flash(translate('Products imported successfully'))->success(); } } public function model(array $row) { ++$this->rows; } public function getRowCount(): int { return $this->rows; } public function rules(): array { return [ // Can also use callback validation rules 'unit_price' => function ($attribute, $value, $onFailure) { if (!is_numeric($value)) { $onFailure('Unit price is not numeric'); } } ]; } public function downloadThumbnail($url) { try { $upload = new Upload; $upload->external_link = $url; $upload->type = 'image'; $upload->save(); return $upload->id; } catch (\Exception $e) { } return null; } public function downloadGalleryImages($urls) { $data = array(); foreach (explode(',', str_replace(' ', '', $urls)) as $url) { $data[] = $this->downloadThumbnail($url); } return implode(',', $data); } } PK2W]WLManualPaymentMethod.phpnu[belongsTo(Page::class); } } PK2W]ds:WholesalePrice.phpnu[warranty_translations->where('lang', $lang)->first(); return $warranty_translation != null ? $warranty_translation->$field : $this->$field; } public function warranty_translations() { return $this->hasMany(WarrantyTranslation::class); } } PK2W] FlashDeal.phpnu[flash_deal_translations->where('lang', $lang)->first(); return $flash_deal_translation != null ? $flash_deal_translation->$field : $this->$field; } public function flash_deal_translations(){ return $this->hasMany(FlashDealTranslation::class); } public function flash_deal_products() { return $this->hasMany(FlashDealProduct::class); } public function scopeIsActiveAndFeatured($query) { return $query->where('status', '1') ->where('featured', '1'); } } PK2W]n !NNNoteTranslation.phpnu[belongsTo(Brand::class); } } PK2W]}!VV Review.phpnu[belongsTo(User::class); } public function product(){ return $this->belongsTo(Product::class); } } PK2W]9=rrUser.phpnu[notify(new EmailVerificationNotification()); } /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', 'address', 'city', 'postal_code', 'phone', 'country', 'provider_id', 'email_verified_at', 'verification_code' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; public function wishlists() { return $this->hasMany(Wishlist::class); } public function customer() { return $this->hasOne(Customer::class); } public function affiliate_user() { return $this->hasOne(AffiliateUser::class); } public function affiliate_withdraw_request() { return $this->hasMany(AffiliateWithdrawRequest::class); } public function products() { return $this->hasMany(Product::class); } public function shop() { return $this->hasOne(Shop::class); } public function seller() { return $this->hasOne(Seller::class); } public function staff() { return $this->hasOne(Staff::class); } public function orders() { return $this->hasMany(Order::class); } public function seller_orders() { return $this->hasMany(Order::class, "seller_id"); } public function seller_sales() { return $this->hasMany(OrderDetail::class, "seller_id"); } public function wallets() { return $this->hasMany(Wallet::class)->orderBy('created_at', 'desc'); } public function club_point() { return $this->hasOne(ClubPoint::class); } public function customer_package() { return $this->belongsTo(CustomerPackage::class); } public function customer_package_payments() { return $this->hasMany(CustomerPackagePayment::class); } public function customer_products() { return $this->hasMany(CustomerProduct::class); } public function seller_package_payments() { return $this->hasMany(SellerPackagePayment::class); } public function carts() { return $this->hasMany(Cart::class); } public function reviews() { return $this->hasMany(Review::class); } public function addresses() { return $this->hasMany(Address::class); } public function affiliate_log() { return $this->hasMany(AffiliateLog::class); } public function product_bids() { return $this->hasMany(AuctionProductBid::class); } public function product_queries(){ return $this->hasMany(ProductQuery::class,'customer_id'); } public function uploads(){ return $this->hasMany(Upload::class); } public function userCoupon(){ return $this->hasOne(UserCoupon::class); } } PK2W]5SSubSubCategory.phpnu[orderBy('name', 'asc'); }); } public function subCategory() { return $this->belongsTo(SubCategory::class); } } PK2W]V_UserCoupon.phpnu[belongsTo(User::class); } public function coupon(){ return $this->belongsTo(Coupon::class); } } PK2W]iPaymentMethod.phpnu[ Language.phpnu[hasMany(SizeChartDetail::class); } public function category() { return $this->belongsTo(Category::class); } } PK2W]eիCustomAlert.phpnu[belongsTo(Attribute::class); } } PK2W]v@CustomerPackage.phpnu[hasMany(CustomerPackageTranslation::class)->where('lang', $lang)->first(); return $brand_translation != null ? $brand_translation->$field : $this->$field; } public function customer_package_translations(){ return $this->hasMany(CustomerPackageTranslation::class); } public function customer_package_payments() { return $this->hasMany(CustomerPackagePayment::class); } } PK2W]ʰc State.phpnu[belongsTo(Country::class); } public function cities(){ return $this->hasMany(City::class); } } PK2W]j}qqNotificationType.phpnu[notificationTypeTranslations->where('lang', $lang)->first(); return $notificationTypeTtranslation != null ? $notificationTypeTtranslation->$field : $this->$field; } public function notificationTypeTranslations() { return $this->hasMany(NotificationTypeTranslation::class); } } PK2W] X` Conversation.phpnu[hasMany(Message::class); } public function sender(){ return $this->belongsTo(User::class, 'sender_id'); } public function receiver(){ return $this->belongsTo(User::class, 'receiver_id'); } } PK2W]ZZAttributeTranslation.phpnu[belongsTo(Attribute::class); } } PK2W]R@\OrderDetail.phpnu[PK2W]%ZCustomerPackagePayment.phpnu[PK2W]JAffiliateConfig.phpnu[PK2W]*Permission.phpnu[PK2W]M Currency.phpnu[PK2W]]Kԛ Policy.phpnu[PK2W]qN.. Message.phpnu[PK2W];9 FirebaseNotification.phpnu[PK2W]׵ DeliveryBoy.phpnu[PK2W]/~] SmsTemplate.phpnu[PK2W]pCy Cart.phpnu[PK2W]x;AttributeCategory.phpnu[PK2W]8ˏPickupPoint.phpnu[PK2W]BB{{SellerWithdrawRequest.phpnu[PK2W]C%AffiliateLog.phpnu[PK2W]0^(zzAuctionProductBid.phpnu[PK2W](quProxyPayment.phpnu[PK2W]Z ClubPoint.phpnu[PK2W]bWCouponUsage.phpnu[PK2W]?AffiliateUser.phpnu[PK2W]!AffiliateStats.phpnu[PK2W]Uڧ9   "Wallet.phpnu[PK2W]SY00#CarrierRangePrice.phpnu[PK2W]q# R\\j&DeliveryBoyPayment.phpnu[PK2W] *FF (NotificationTypeTranslation.phpnu[PK2W]   )Country.phpnu[PK2W]omTT+WarrantyTranslation.phpnu[PK2W]@+==-FollowSeller.phpnu[PK2W]^C.DeliveryHistory.phpnu[PK2W]) `0Ticket.phpnu[PK2W]^9HH.2BrandTranslation.phpnu[PK2W]]TG 3Payment.phpnu[PK2W]#УB**4CommissionHistory.phpnu[PK2W]s}o'6ProductTax.phpnu[PK2W]w))+7City.phpnu[PK2W]uݜ :Seller.phpnu[PK2W]H>><CartProduct.phpnu[PK2W]âu $>Color.phpnu[PK2W]ž  ?Attribute.phpnu[PK2W]>?3 sBProduct.phpnu[PK2W]= yOCategory.phpnu[PK2W]k)ooVProductTranslation.phpnu[PK2W]XQFnn XCoupon.phpnu[PK2W]eQLdd*[CombinedOrder.phpnu[PK2W](vv\PickupPointTranslation.phpnu[PK2W]3/cc ^Address.phpnu[PK2W]&!cc-aTicketReply.phpnu[PK2W]KtE bSearch.phpnu[PK2W]K!cFrequentlyBroughtProduct.phpnu[PK2W]1fEmailTemplate.phpnu[PK2W]޳(-gProductsExport.phpnu[PK2W]9mZone.phpnu[PK2W]RדU77 oCarrier.phpnu[PK2W]#; AA .rCustomer.phpnu[PK2W]ՕsProductCategory.phpnu[PK2W],!1qquCustomerPackageTranslation.phpnu[PK2W]5y uwAddon.phpnu[PK2W]oxAffiliateEarningDetail.phpnu[PK2W]LzzyTranslation.phpnu[PK2W]C_ttzBlog.phpnu[PK2W]')8|Shop.phpnu[PK2W]W< P~Brand.phpnu[PK2W]oAffiliatePayment.phpnu[PK2W]XXPage.phpnu[PK2W]S$(Role.phpnu[PK2W]SellerPackage.phpnu[PK2W]/ϋDynamicPopup.phpnu[PK2W]>vrrSellerPackageTranslation.phpnu[PK2W]>Ͷll Order.phpnu[PK2W]i  HAppSettings.phpnu[PK2W].IAffiliateOption.phpnu[PK2W]`ײCustomerProduct.phpnu[PK2W]־LastViewedProduct.phpnu[PK2W]oXyCustomersImport.phpnu[PK2W]rOtpConfiguration.phpnu[PK2W]JJRefundRequest.phpnu[PK2W]gXzz.CustomerProductTranslation.phpnu[PK2W]GNȥClubPointDetail.phpnu[PK2W]//AppTranslation.phpnu[PK2W]n8 2Staff.phpnu[PK2W]Ro__7FlashDealProduct.phpnu[PK2W]0%% ڮWishlist.phpnu[PK2W]Z]];CategoryTranslation.phpnu[PK2W]M0߱MeasurementPoint.phpnu[PK2W]:BSubCategory.phpnu[PK2W]Yc}}GSellerPackagePayment.phpnu[PK2W]<1 CarrierRange.phpnu[PK2W]p\U%% Upload.phpnu[PK2W] |Y{Note.phpnu[PK2W]rr/ESizeChartDetail.phpnu[PK2W]2DDCityTranslation.phpnu[PK2W]DQUPasswordReset.phpnu[PK2W]ProductQuery.phpnu[PK2W]4iBrandsImport.phpnu[PK2W]hAffiliateWithdrawRequest.phpnu[PK2W]P Transaction.phpnu[PK2W]OAwccJBlogCategory.phpnu[PK2W]ProductStock.phpnu[PK2W]n__ DeliveryBoyCollection.phpnu[PK2W]@ Slider.phpnu[PK2W]8` Banner.phpnu[PK2W]QzTax.phpnu[PK2W]f;BusinessSetting.phpnu[PK2W]_w]]FlashDealTranslation.phpnu[PK2W]WiOrdersExport.phpnu[PK2W]̎LLRoleTranslation.phpnu[PK2W]dž 9Contact.phpnu[PK2W]tE:FrequentlyBoughtProduct.phpnu[PK2W]]i[[ProductsImport.phpnu[PK2W]WL(ManualPaymentMethod.phpnu[PK2W]PPTPageTranslation.phpnu[PK2W]ds:WholesalePrice.phpnu[PK2W]ʐ /Warranty.phpnu[PK2W] 'FlashDeal.phpnu[PK2W]n !NN,NoteTranslation.phpnu[PK2W]}!VV Review.phpnu[PK2W]9=rrM User.phpnu[PK2W]5SSubSubCategory.phpnu[PK2W]V_UserCoupon.phpnu[PK2W]i!!PaymentMethod.phpnu[PK2W]_'ef"Subscriber.phpnu[PK2W]> f#Language.phpnu[PK2W]< l$SizeChart.phpnu[PK2W]eի[&CustomAlert.phpnu[PK2W]j""E(AttributeValue.phpnu[PK2W]v@)CustomerPackage.phpnu[PK2W]ʰc -State.phpnu[PK2W]j}qq.NotificationType.phpnu[PK2W] X` 1Conversation.phpnu[PK2W]ZZ3AttributeTranslation.phpnu[PK(d5