├── .docker ├── nginx │ ├── certs │ │ ├── app.crt │ │ └── app.key │ ├── config │ │ ├── app-ssl.conf │ │ └── app.conf │ └── log │ │ └── .gitignore └── php │ ├── Dockerfile │ └── php.ini ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── README.md ├── app ├── Console │ ├── Commands │ │ └── Admin │ │ │ ├── Cart │ │ │ └── CartForgotten.php │ │ │ ├── Promotion │ │ │ └── InactivePromotion.php │ │ │ ├── Sitemap │ │ │ └── GenerateSitemap.php │ │ │ └── Test │ │ │ └── TestController.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ └── Admin │ │ ├── Dashboard │ │ └── Order │ │ │ ├── OrdersExport.php │ │ │ └── OrdersInfoExport.php │ │ └── Product │ │ └── ProductExport.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── About │ │ │ │ └── AboutController.php │ │ │ ├── AnalyticSearch │ │ │ │ └── AnalyticSearchController.php │ │ │ ├── Banner │ │ │ │ └── BannerController.php │ │ │ ├── Blog │ │ │ │ ├── CategoryController.php │ │ │ │ ├── PostController.php │ │ │ │ └── TagController.php │ │ │ ├── Catalog │ │ │ │ ├── BrandController.php │ │ │ │ ├── CategoryController.php │ │ │ │ ├── Feed │ │ │ │ │ ├── Facebook.php │ │ │ │ │ └── Google.php │ │ │ │ ├── GenderController.php │ │ │ │ └── ProductController.php │ │ │ ├── Configurator │ │ │ │ ├── Budget │ │ │ │ │ └── ConfiguratorBudgetController.php │ │ │ │ ├── Compatibility │ │ │ │ │ └── ConfiguratorCompatibilityController.php │ │ │ │ ├── FPS │ │ │ │ │ └── ConfiguratorFPSController.php │ │ │ │ ├── Game │ │ │ │ │ └── ConfiguratorGameController.php │ │ │ │ ├── Performance │ │ │ │ │ └── ConfiguratorPerformanceController.php │ │ │ │ └── Stage │ │ │ │ │ └── ConfiguratorStageController.php │ │ │ ├── Coupon │ │ │ │ └── CouponController.php │ │ │ ├── Dashboard │ │ │ │ ├── Blog │ │ │ │ │ └── BlogController.php │ │ │ │ ├── EmailWeb │ │ │ │ │ └── EmailWebController.php │ │ │ │ ├── General │ │ │ │ │ └── GeneralController.php │ │ │ │ └── Order │ │ │ │ │ └── OrderController.php │ │ │ ├── EmailWeb │ │ │ │ └── EmailWebController.php │ │ │ ├── Gallery │ │ │ │ └── GalleryController.php │ │ │ ├── Language │ │ │ │ └── LanguageController.php │ │ │ ├── Order │ │ │ │ └── OrderController.php │ │ │ ├── Package │ │ │ │ ├── FeatureController.php │ │ │ │ └── PackageController.php │ │ │ ├── Partner │ │ │ │ └── PartnerController.php │ │ │ ├── Portfolio │ │ │ │ └── PortfolioController.php │ │ │ ├── Promotion │ │ │ │ └── PromotionController.php │ │ │ ├── QuestionAnswer │ │ │ │ └── QuestionAnswerController.php │ │ │ ├── Service │ │ │ │ └── ServiceController.php │ │ │ ├── Setting │ │ │ │ ├── AccessGoogle │ │ │ │ │ └── AccessGoogleController.php │ │ │ │ ├── AccessMailchimp │ │ │ │ │ └── AccessMailchimpController.php │ │ │ │ ├── AccessPayment │ │ │ │ │ └── AccessPaymentController.php │ │ │ │ ├── Backup │ │ │ │ │ └── BackupController.php │ │ │ │ ├── Configurator │ │ │ │ │ └── ConfiguratorController.php │ │ │ │ ├── Contact │ │ │ │ │ └── ContactController.php │ │ │ │ ├── Country │ │ │ │ │ └── CountryController.php │ │ │ │ ├── Currency │ │ │ │ │ └── CurrencyController.php │ │ │ │ ├── General │ │ │ │ │ └── GeneralController.php │ │ │ │ ├── Log │ │ │ │ │ └── LogController.php │ │ │ │ ├── ModuleWeb │ │ │ │ │ └── ModuleWebController.php │ │ │ │ ├── Permission │ │ │ │ │ └── PermissionController.php │ │ │ │ ├── Popup │ │ │ │ │ └── PopupController.php │ │ │ │ ├── Role │ │ │ │ │ └── RoleController.php │ │ │ │ ├── ShippingClass │ │ │ │ │ └── ShippingclassController.php │ │ │ │ ├── ShippingZone │ │ │ │ │ └── ShippingZoneController.php │ │ │ │ ├── State │ │ │ │ │ └── StateController.php │ │ │ │ ├── TagAnalytic │ │ │ │ │ └── TagAnalyticController.php │ │ │ │ └── Welcome │ │ │ │ │ └── WelcomeController.php │ │ │ ├── Subscriber │ │ │ │ └── SubscriberController.php │ │ │ ├── Team │ │ │ │ └── TeamController.php │ │ │ ├── Test │ │ │ │ └── TestController.php │ │ │ ├── Testimony │ │ │ │ └── TestimonyController.php │ │ │ ├── User │ │ │ │ └── UserController.php │ │ │ ├── Video │ │ │ │ └── VideoController.php │ │ │ └── Wholesale │ │ │ │ └── WholesaleController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ImpersonateController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── SocialController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── Ecommerce │ │ │ ├── About │ │ │ │ └── AboutController.php │ │ │ ├── Account │ │ │ │ ├── BillingAddress │ │ │ │ │ └── BillingAddressController.php │ │ │ │ ├── Dashboard │ │ │ │ │ └── DashboardController.php │ │ │ │ ├── Order │ │ │ │ │ └── OrderController.php │ │ │ │ ├── ProductDigital │ │ │ │ │ └── ProductDigitalController.php │ │ │ │ ├── Profile │ │ │ │ │ └── ProfileController.php │ │ │ │ └── ShippingAddress │ │ │ │ │ └── ShippingAddressController.php │ │ │ ├── Blog │ │ │ │ └── PostController.php │ │ │ ├── Cart │ │ │ │ └── CartController.php │ │ │ ├── Category │ │ │ │ └── CategoryController.php │ │ │ ├── Checkout │ │ │ │ └── CheckoutController.php │ │ │ ├── Compare │ │ │ │ └── CompareController.php │ │ │ ├── Configurator │ │ │ │ └── ConfiguratorController.php │ │ │ ├── Contact │ │ │ │ └── ContactController.php │ │ │ ├── Currency │ │ │ │ └── CurrencyController.php │ │ │ ├── Feed │ │ │ │ ├── FacebookController.php │ │ │ │ └── GoogleController.php │ │ │ ├── Gallery │ │ │ │ └── GalleryController.php │ │ │ ├── Home │ │ │ │ └── HomeController.php │ │ │ ├── Language │ │ │ │ └── LanguageController.php │ │ │ ├── PaymentGateways │ │ │ │ ├── MercadoPagoController.php │ │ │ │ └── StripeController.php │ │ │ ├── Popup │ │ │ │ └── PopupController.php │ │ │ ├── Product │ │ │ │ └── ProductController.php │ │ │ ├── TrackOrder │ │ │ │ └── TrackOrderController.php │ │ │ ├── Webhook │ │ │ │ ├── WebhookMercadopagoController.php │ │ │ │ └── WebhookStripeController.php │ │ │ └── Wishlist │ │ │ │ └── WishlistController.php │ │ └── Install │ │ │ ├── Complete │ │ │ └── CompleteController.php │ │ │ ├── Database │ │ │ └── DatabaseController.php │ │ │ ├── Email │ │ │ └── EmailController.php │ │ │ ├── General │ │ │ └── GeneralController.php │ │ │ └── User │ │ │ └── UserController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── Admin │ │ │ ├── About │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── AnalyticSearch │ │ │ │ └── Index.php │ │ │ ├── Banner │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Blog │ │ │ │ ├── Category │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Post │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── Show.php │ │ │ │ └── Tag │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ ├── Catalog │ │ │ │ ├── Brand │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Category │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Gender │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ └── Product │ │ │ │ │ ├── Color │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ │ ├── Product │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── Show.php │ │ │ │ │ ├── Similar │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ │ └── Size │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ ├── Comment │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Configurator │ │ │ │ ├── Budget │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Compatibility │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Fps │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Game │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Performance │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ └── Stage │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ ├── Coupon │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Dashboard │ │ │ │ ├── Blog │ │ │ │ │ └── Index.php │ │ │ │ ├── EmailWeb │ │ │ │ │ └── Index.php │ │ │ │ ├── General │ │ │ │ │ └── Index.php │ │ │ │ └── Order │ │ │ │ │ └── Index.php │ │ │ ├── EmailWeb │ │ │ │ └── Index.php │ │ │ ├── Gallery │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Layouts │ │ │ │ └── Notification.php │ │ │ ├── Order │ │ │ │ ├── Email │ │ │ │ │ └── Resend.php │ │ │ │ ├── Order │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── Show.php │ │ │ │ ├── Status │ │ │ │ │ └── Form.php │ │ │ │ └── Tracking │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ ├── Package │ │ │ │ ├── Feature │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ └── Package │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ ├── Partner │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Portfolio │ │ │ │ ├── Form.php │ │ │ │ ├── Index.php │ │ │ │ └── Show.php │ │ │ ├── Promotion │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── QuestionAnswer │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Service │ │ │ │ ├── Form.php │ │ │ │ ├── Index.php │ │ │ │ └── Show.php │ │ │ ├── Setting │ │ │ │ ├── AccessGoogle │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── AccessMailchimp │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── AccessPayment │ │ │ │ │ ├── Index.php │ │ │ │ │ ├── Mercadopago │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Index.php │ │ │ │ │ ├── Paypal │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Index.php │ │ │ │ │ ├── Stripe │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Index.php │ │ │ │ │ └── Transfer │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Index.php │ │ │ │ ├── Backup │ │ │ │ │ └── Index.php │ │ │ │ ├── Certificate │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Configurator │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Contact │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Country │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Currency │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── General │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Log │ │ │ │ │ └── Index.php │ │ │ │ ├── ModuleWeb │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Permission │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Popup │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Role │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── Show.php │ │ │ │ ├── ShippingClass │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── ShippingZone │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── State │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ └── TagAnalytic │ │ │ │ │ └── Form.php │ │ │ ├── Subscriber │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Team │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Testimony │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── User │ │ │ │ ├── Notification │ │ │ │ │ └── Index.php │ │ │ │ ├── Permission │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── ShippingAddress │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ ├── ShippingBilling │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Index.php │ │ │ │ └── User │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Index.php │ │ │ │ │ └── Show.php │ │ │ ├── Video │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ └── Wholesale │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ └── Ecommerce │ │ │ ├── Account │ │ │ ├── BillingAddress │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Dashboard │ │ │ │ └── Index.php │ │ │ ├── Order │ │ │ │ ├── Index.php │ │ │ │ └── Show.php │ │ │ ├── ProductDigital │ │ │ │ ├── Index.php │ │ │ │ └── Show.php │ │ │ ├── Profile │ │ │ │ ├── Form.php │ │ │ │ └── Password.php │ │ │ └── ShippingAddress │ │ │ │ ├── Form.php │ │ │ │ └── Index.php │ │ │ ├── Blog │ │ │ ├── Index.php │ │ │ ├── Show.php │ │ │ └── Sidebar.php │ │ │ ├── Cart │ │ │ ├── Index.php │ │ │ └── Mini.php │ │ │ ├── Category │ │ │ └── Index.php │ │ │ ├── Checkout │ │ │ ├── Complete.php │ │ │ ├── Index.php │ │ │ └── Payment.php │ │ │ ├── Comment │ │ │ ├── Form.php │ │ │ └── Index.php │ │ │ ├── Compare │ │ │ ├── Index.php │ │ │ └── Mini.php │ │ │ ├── Configurator │ │ │ └── Index.php │ │ │ ├── Contact │ │ │ └── Index.php │ │ │ ├── Layouts │ │ │ ├── Cart.php │ │ │ ├── Compare.php │ │ │ ├── MenuCategory.php │ │ │ ├── MenuMobileCategory.php │ │ │ ├── Search.php │ │ │ ├── TagAnalyticFooter.php │ │ │ ├── TagAnalyticHeader.php │ │ │ └── Wishlist.php │ │ │ ├── Popup │ │ │ ├── Index.php │ │ │ └── Js.php │ │ │ ├── Product │ │ │ ├── Index.php │ │ │ └── Show.php │ │ │ ├── Subscriber │ │ │ ├── Index.php │ │ │ └── Popup.php │ │ │ ├── TrackOrder │ │ │ └── Index.php │ │ │ └── Wishlist │ │ │ ├── Index.php │ │ │ └── Mini.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── BillingAddressMiddleware.php │ │ ├── CurrencyMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── InstallMiddleware.php │ │ ├── LanguageMiddleware.php │ │ ├── OrderMiddleware.php │ │ ├── PanelMiddleware.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── ShippingAddressMiddleware.php │ │ ├── StoreMiddleware.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UserMiddleware.php │ │ └── VerifyCsrfToken.php │ └── Traits │ │ └── Admin │ │ ├── OrWithFilterUsers.php │ │ ├── WithFilterMyUsers.php │ │ ├── WithFilterThroughUser.php │ │ ├── WithFilterThroughUsers.php │ │ ├── WithFilterUser.php │ │ └── WithFilterUsers.php ├── Imports │ └── Admin │ │ └── Product │ │ ├── ProductImport.php │ │ └── ProductWordpressImport.php ├── Listeners │ └── MailSuccessfulDatabaseBackup.php ├── Mail │ ├── Blog │ │ └── PostCreate.php │ ├── Cart │ │ └── CartForgotten.php │ ├── Comment │ │ └── CommentCreate.php │ ├── Contact │ │ └── ContactCreate.php │ └── Order │ │ ├── OrderChangeStatus.php │ │ ├── OrderCreate.php │ │ ├── OrderInfoBank.php │ │ └── OrderTrackingNumber.php ├── Models │ ├── About.php │ ├── AnalyticSearch.php │ ├── Banner.php │ ├── BillingAddress.php │ ├── BlogCategory.php │ ├── BlogPost.php │ ├── BlogTag.php │ ├── Comment.php │ ├── ConfiguratorBudget.php │ ├── ConfiguratorBudgetProduct.php │ ├── ConfiguratorChipset.php │ ├── ConfiguratorCompatibility.php │ ├── ConfiguratorFPS.php │ ├── ConfiguratorGame.php │ ├── ConfiguratorPerformance.php │ ├── ConfiguratorStage.php │ ├── ConfiguratorStageProduct.php │ ├── Country.php │ ├── Coupon.php │ ├── Currency.php │ ├── EmailWeb.php │ ├── File.php │ ├── Gallery.php │ ├── Image.php │ ├── ModuleWeb.php │ ├── Order.php │ ├── OrderTracking.php │ ├── Package.php │ ├── PackageFeature.php │ ├── Partner.php │ ├── Popup.php │ ├── Portfolio.php │ ├── Product.php │ ├── ProductBrand.php │ ├── ProductCategory.php │ ├── ProductColor.php │ ├── ProductGender.php │ ├── ProductSimilar.php │ ├── ProductSize.php │ ├── Profile.php │ ├── Promotion.php │ ├── QuestionAnswer.php │ ├── Reaction.php │ ├── Review.php │ ├── Service.php │ ├── Session.php │ ├── ShippingAddress.php │ ├── ShippingClass.php │ ├── ShippingPrice.php │ ├── ShippingZone.php │ ├── Shoppingcart.php │ ├── State.php │ ├── Subscriber.php │ ├── TagAnalytic.php │ ├── Team.php │ ├── Testimony.php │ ├── User.php │ ├── Video.php │ ├── Wholesale.php │ └── WholesaleDetail.php ├── Notifications │ ├── Comment │ │ └── CommentCreate.php │ ├── Contact │ │ └── ContactCreate.php │ ├── Order │ │ └── OrderCreate.php │ ├── Susbcriber │ │ └── SubscriberCreate.php │ └── User │ │ └── UserCreate.php ├── Observers │ ├── EmailWebObserver.php │ ├── FileObserver.php │ ├── ImageObserver.php │ ├── OrderObserver.php │ ├── SubscriberObserver.php │ └── UserObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── TranslatableServiceProvider.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cart.php ├── certificate.php ├── configurator.php ├── contact.php ├── cors.php ├── currency.php ├── database.php ├── dotenv-editor.php ├── eloquent-viewable.php ├── excel.php ├── filesystems.php ├── hashing.php ├── honey.php ├── image.php ├── livewire.php ├── location.php ├── logging.php ├── mail.php ├── menu-setting.php ├── menu-system.php ├── newsletter.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── sluggable.php ├── store.php ├── translatable.php └── view.php ├── database ├── .gitignore ├── factories │ ├── BlogPostFactory.php │ ├── ImageFactory.php │ └── ReviewFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2019_12_14_000021_create_sessions_table.php │ ├── 2019_12_15_000001_create_notifications_table.php │ ├── 2022_03_21_030901_create_images_table.php │ ├── 2022_03_21_030903_create_files_table.php │ ├── 2022_03_21_030905_create_module_webs_table.php │ ├── 2022_03_21_030907_create_currencies_table.php │ ├── 2022_03_21_030910_create_currenciables_table.php │ ├── 2022_03_21_031120_create_countries_table.php │ ├── 2022_03_21_031121_create_states_table.php │ ├── 2022_03_21_031123_create_shipping_zones_table.php │ ├── 2022_03_21_031124_create_shipping_zone_state_table.php │ ├── 2022_03_21_031126_create_shipping_classes_table.php │ ├── 2022_03_21_031128_create_shipping_class_shipping_zone_table.php │ ├── 2022_03_21_031544_create_shipping_addresses_table.php │ ├── 2022_03_21_031546_create_billing_addresses_table.php │ ├── 2022_03_21_031548_create_comments_table.php │ ├── 2022_03_21_041706_create_abouts_table.php │ ├── 2022_03_21_041728_create_teams_table.php │ ├── 2022_03_21_045042_create_blog_categories_table.php │ ├── 2022_03_21_045101_create_blog_tags_table.php │ ├── 2022_03_21_045152_create_blog_posts_table.php │ ├── 2022_03_21_045347_create_blog_category_blog_post.php │ ├── 2022_03_21_045359_create_blog_post_blog_tag.php │ ├── 2022_03_21_045539_create_product_categories_table.php │ ├── 2022_03_21_045654_create_product_genders_table.php │ ├── 2022_03_21_045658_create_product_brands_table.php │ ├── 2022_03_21_045818_create_products_table.php │ ├── 2022_03_21_045825_create_promotions_table.php │ ├── 2022_03_21_045827_create_promotionables_table.php │ ├── 2022_03_21_045830_create_currency_promotion_table.php │ ├── 2022_03_21_045832_create_coupons_table.php │ ├── 2022_03_21_045836_create_coupon_currency_table.php │ ├── 2022_03_21_045846_create_product_colors_table.php │ ├── 2022_03_21_045858_create_product_sizes_table.php │ ├── 2022_03_21_045860_create_product_color_product_size.php │ ├── 2022_03_21_045864_create_product_product_category_table.php │ ├── 2022_03_21_045864_create_product_product_gender_table.php │ ├── 2022_03_21_050033_create_orders_table.php │ ├── 2022_03_21_050146_create_order_product_table.php │ ├── 2022_03_21_052905_create_activity_log_table.php │ ├── 2022_03_21_053808_create_views_table.php │ ├── 2022_03_21_064827_create_jobs_table.php │ ├── 2022_03_21_210535_create_permission_tables.php │ ├── 2022_04_10_203603_create_banners_table.php │ ├── 2022_04_14_112129_create_videos_table.php │ ├── 2022_04_16_000152_create_subscribers_table.php │ ├── 2022_04_16_131835_create_partners_table.php │ ├── 2022_04_16_145040_create_email_webs_table.php │ ├── 2022_05_26_212117_create_galleries_table.php │ ├── 2022_06_04_112824_create_services_table.php │ ├── 2022_06_04_120450_create_portfolios_table.php │ ├── 2022_06_16_135535_create_question_answers_table.php │ ├── 2022_06_17_142227_create_testimonies_table.php │ ├── 2022_06_17_142923_create_packages_table.php │ ├── 2022_06_17_143044_create_package_features_table.php │ ├── 2022_06_17_144033_create_package_package_feature_table.php │ ├── 2023_01_09_214659_create_shoppingcart_table.php │ ├── 2023_01_26_140930_create_order_trackings_table.php │ ├── 2023_01_29_094107_create_wholesales_table.php │ ├── 2023_01_29_100054_create_wholesale_details_table.php │ ├── 2023_01_29_100146_create_product_wholesale_table.php │ ├── 2023_01_29_100703_create_currency_wholesale_table.php │ ├── 2023_03_04_101552_create_analytic_searches_table.php │ ├── 2023_03_28_203119_create_tag_analytics_table.php │ ├── 2023_05_28_112314_create_reviews_table.php │ ├── 2023_05_28_114114_create_reactions_table.php │ ├── 2023_05_30_111920_create_profiles_table.php │ ├── 2023_08_15_165607_create_popups_table.php │ ├── 2023_08_22_002129_create_product_similars_table.php │ ├── 2023_10_15_021428_add_event_column_to_activity_log_table.php │ ├── 2023_10_15_021429_add_batch_uuid_column_to_activity_log_table.php │ ├── 2023_10_29_163141_create_configurator_stages_table.php │ ├── 2023_10_29_163816_create_configurator_stage_product_table.php │ ├── 2023_11_02_113527_create_configurator_compatibilities_table.php │ ├── 2023_11_05_170949_create_configurator_compatibility_product_table.php │ ├── 2023_11_21_091406_create_configurator_performances_table.php │ ├── 2023_11_21_122811_create_configurator_games_table.php │ ├── 2023_11_28_173432_create_configurator_chipsets_table.php │ ├── 2023_11_28_174506_create_configurator_budgets_table.php │ ├── 2023_11_29_094904_create_configurator_budget_configurator_stage_product_table.php │ ├── 2023_12_01_182753_create_configurator_budget_configurator_performance_table.php │ └── 2023_12_01_204637_create_configurator_f_p_s_table.php └── seeders │ ├── AboutSeeder.php │ ├── BannerSeeder.php │ ├── BillingAddressSeeder.php │ ├── BlogCategorySeeder.php │ ├── BlogPostSeeder.php │ ├── BlogTagSeeder.php │ ├── ConfiguratorBudgetProductSeeder.php │ ├── ConfiguratorBudgetSeeder.php │ ├── ConfiguratorChipsetSeeder.php │ ├── ConfiguratorCompatibilitySeeder.php │ ├── ConfiguratorFPSSeeder.php │ ├── ConfiguratorGameSeeder.php │ ├── ConfiguratorPerformanceSeeder.php │ ├── ConfiguratorStageSeeder.php │ ├── CountrySeeder.php │ ├── CouponSeeder.php │ ├── CurrencySeeder.php │ ├── DatabaseSeeder.php │ ├── EmailWebSeeder.php │ ├── GallerySeeder.php │ ├── ModuleWebSeeder.php │ ├── OrderSeeder.php │ ├── PackageFeatureSeeder.php │ ├── PackageSeeder.php │ ├── PartnerSeeder.php │ ├── PermissionSeeder.php │ ├── PopupSeeder.php │ ├── PortfolioSeeder.php │ ├── ProductBrandSeeder.php │ ├── ProductCategorySeeder.php │ ├── ProductColorSeeder.php │ ├── ProductGenderSeeder.php │ ├── ProductSeeder.php │ ├── ProductSizeSeeder.php │ ├── ProfileSeeder.php │ ├── PromotionSeeder.php │ ├── QuestionAnswerSeeder.php │ ├── ReactionSeeder.php │ ├── ReviewSeeder.php │ ├── RoleSeeder.php │ ├── ServiceSeeder.php │ ├── ShippingAddressSeeder.php │ ├── ShippingClassSeeder.php │ ├── ShippingZoneSeeder.php │ ├── StateSeeder.php │ ├── SubscriberSeeder.php │ ├── TagAnalyticSeeder.php │ ├── TeamSeeder.php │ ├── TestimonySeeder.php │ ├── UserSeeder.php │ ├── VideoSeeder.php │ ├── WholesaleDetailSeeder.php │ └── WholesaleSeeder.php ├── docker-compose.yml ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── README.md ├── assets │ ├── admin │ │ ├── css │ │ │ ├── custom.css │ │ │ ├── style.bundle.css │ │ │ ├── style.bundle.rtl.css │ │ │ └── style.dark.bundle.css │ │ ├── documents │ │ │ └── product │ │ │ │ └── template-products.xlsx │ │ ├── fontawesome │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-font-face.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ ├── v5-font-face.css │ │ │ │ └── v5-font-face.min.css │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── conflict-detection.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── less │ │ │ │ ├── _animated.less │ │ │ │ ├── _bordered-pulled.less │ │ │ │ ├── _core.less │ │ │ │ ├── _fixed-width.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _sizing.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── metadata │ │ │ │ ├── categories.yml │ │ │ │ ├── icons.json │ │ │ │ ├── icons.yml │ │ │ │ ├── shims.json │ │ │ │ ├── shims.yml │ │ │ │ └── sponsors.yml │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _shims.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── brands.scss │ │ │ │ ├── fontawesome.scss │ │ │ │ ├── regular.scss │ │ │ │ ├── solid.scss │ │ │ │ └── v4-shims.scss │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 42-group.svg │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── artstation.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bilibili.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── bots.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buffer.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buy-n-large.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── centos.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ ├── cloudflare.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── cmplid.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── confluence.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cotton-bureau.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dailymotion.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── deezer.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── dev.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── dhl.svg │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge-legacy.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── evernote.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ ├── fedex.svg │ │ │ │ │ ├── fedora.svg │ │ │ │ │ ├── figma.svg │ │ │ │ │ ├── firefox-browser.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-alt.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── golang.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-pay.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── guilded.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hashnode.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── ideal.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram-square.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── instalod.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── invision.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── jira.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── mdb.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── microblog.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mixer.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nfc-directional.svg │ │ │ │ │ ├── nfc-symbol.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── orcid.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── padlet.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── perbyte.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper-square.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── pix.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── redhat.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── screenpal.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopify.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sitrox.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ │ ├── square-font-awesome.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── umbraco.svg │ │ │ │ │ ├── uncharted.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── unity.svg │ │ │ │ │ ├── unsplash.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── ups.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wodu.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── 0.svg │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ ├── 9.svg │ │ │ │ │ ├── a.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ │ ├── anchor-lock.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angles-down.svg │ │ │ │ │ ├── angles-left.svg │ │ │ │ │ ├── angles-right.svg │ │ │ │ │ ├── angles-up.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-whole.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ │ ├── arrow-down-long.svg │ │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left-long.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-pointer.svg │ │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ │ ├── arrow-right-long.svg │ │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ │ ├── arrow-up-long.svg │ │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ │ ├── arrows-left-right.svg │ │ │ │ │ ├── arrows-rotate.svg │ │ │ │ │ ├── arrows-spin.svg │ │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ │ ├── arrows-up-down.svg │ │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── austral-sign.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── b.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backward-fast.svg │ │ │ │ │ ├── backward-step.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ ├── bag-shopping.svg │ │ │ │ │ ├── bahai.svg │ │ │ │ │ ├── baht-sign.svg │ │ │ │ │ ├── ban-smoking.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars-progress.svg │ │ │ │ │ ├── bars-staggered.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-shopping.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed-pulse.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ │ ├── bell-concierge.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt-lightning.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-atlas.svg │ │ │ │ │ ├── book-bible.svg │ │ │ │ │ ├── book-bookmark.svg │ │ │ │ │ ├── book-journal-whills.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open-reader.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-quran.svg │ │ │ │ │ ├── book-skull.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-top-left.svg │ │ │ │ │ ├── bore-hole.svg │ │ │ │ │ ├── bottle-droplet.svg │ │ │ │ │ ├── bottle-water.svg │ │ │ │ │ ├── bowl-food.svg │ │ │ │ │ ├── bowl-rice.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-archive.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes-packing.svg │ │ │ │ │ ├── boxes-stacked.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ │ ├── bridge-lock.svg │ │ │ │ │ ├── bridge-water.svg │ │ │ │ │ ├── bridge.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broom-ball.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bucket.svg │ │ │ │ │ ├── bug-slash.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── bugs.svg │ │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ │ ├── building-circle-check.svg │ │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ │ ├── building-columns.svg │ │ │ │ │ ├── building-flag.svg │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ ├── building-ngo.svg │ │ │ │ │ ├── building-shield.svg │ │ │ │ │ ├── building-un.svg │ │ │ │ │ ├── building-user.svg │ │ │ │ │ ├── building-wheat.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── burst.svg │ │ │ │ │ ├── bus-simple.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── c.svg │ │ │ │ │ ├── cake-candles.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera-rotate.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-burst.svg │ │ │ │ │ ├── car-on.svg │ │ │ │ │ ├── car-rear.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car-tunnel.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caravan.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ │ ├── cart-flatbed.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cart-shopping.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── cedi-sign.svg │ │ │ │ │ ├── cent-sign.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-user.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── champagne-glasses.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-column.svg │ │ │ │ │ ├── chart-gantt.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart-simple.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-to-slot.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child-dress.svg │ │ │ │ │ ├── child-reaching.svg │ │ │ │ │ ├── child-rifle.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── children.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-exclamation.svg │ │ │ │ │ ├── circle-h.svg │ │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ │ ├── circle-info.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-minus.svg │ │ │ │ │ ├── circle-nodes.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-plus.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-radiation.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clapperboard.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard-question.svg │ │ │ │ │ ├── clipboard-user.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ ├── cloud-bolt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── clover.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code-commit.svg │ │ │ │ │ ├── code-compare.svg │ │ │ │ │ ├── code-fork.svg │ │ │ │ │ ├── code-merge.svg │ │ │ │ │ ├── code-pull-request.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── colon-sign.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment-sms.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass-drafting.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── computer-mouse.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── cow.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-simple.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes-stacked.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── d.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── delete-left.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagram-next.svg │ │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ │ ├── diagram-project.svg │ │ │ │ │ ├── diagram-successor.svg │ │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ │ ├── diamond.svg │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── disease.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── dong-sign.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ │ ├── down-long.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── droplet-slash.svg │ │ │ │ │ ├── droplet.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── e.svg │ │ │ │ │ ├── ear-deaf.svg │ │ │ │ │ ├── ear-listen.svg │ │ │ │ │ ├── earth-africa.svg │ │ │ │ │ ├── earth-americas.svg │ │ │ │ │ ├── earth-asia.svg │ │ │ │ │ ├── earth-europe.svg │ │ │ │ │ ├── earth-oceania.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── elevator.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── explosion.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-low-vision.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── f.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── faucet-drip.svg │ │ │ │ │ ├── faucet.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-pointed.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── ferry.svg │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-circle-check.svg │ │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ │ ├── file-circle-minus.svg │ │ │ │ │ ├── file-circle-plus.svg │ │ │ │ │ ├── file-circle-question.svg │ │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-pen.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-shield.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-waveform.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-burner.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── fish-fins.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask-vial.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── florin-sign.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder-tree.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── forward-fast.svg │ │ │ │ │ ├── forward-step.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── franc-sign.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── g.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gauge-high.svg │ │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ │ ├── gauge-simple.svg │ │ │ │ │ ├── gauge.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── gears.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ │ ├── glass-water.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── grip.svg │ │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ │ ├── guarani-sign.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── gun.svg │ │ │ │ │ ├── h.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-dots.svg │ │ │ │ │ ├── hand-fist.svg │ │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handcuffs.svg │ │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ │ ├── hands-bound.svg │ │ │ │ │ ├── hands-bubbles.svg │ │ │ │ │ ├── hands-clapping.svg │ │ │ │ │ ├── hands-holding-child.svg │ │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ │ ├── hands-holding.svg │ │ │ │ │ ├── hands-praying.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake-angle.svg │ │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ │ ├── handshake-simple.svg │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-simple.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ │ ├── heart-circle-check.svg │ │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ │ ├── heart-crack.svg │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── helmet-safety.svg │ │ │ │ │ ├── helmet-un.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hill-avalanche.svg │ │ │ │ │ ├── hill-rockslide.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub-person.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-empty.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ │ ├── house-chimney-user.svg │ │ │ │ │ ├── house-chimney-window.svg │ │ │ │ │ ├── house-chimney.svg │ │ │ │ │ ├── house-circle-check.svg │ │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ │ ├── house-crack.svg │ │ │ │ │ ├── house-fire.svg │ │ │ │ │ ├── house-flag.svg │ │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ │ ├── house-flood-water.svg │ │ │ │ │ ├── house-laptop.svg │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ │ ├── house-medical-flag.svg │ │ │ │ │ ├── house-medical.svg │ │ │ │ │ ├── house-signal.svg │ │ │ │ │ ├── house-tsunami.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── i.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-clip.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image-portrait.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── j.svg │ │ │ │ │ ├── jar-wheat.svg │ │ │ │ │ ├── jar.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ │ ├── jet-fighter.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── jug-detergent.svg │ │ │ │ │ ├── k.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kip-sign.svg │ │ │ │ │ ├── kit-medical.svg │ │ │ │ │ ├── kitchen-set.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── l.svg │ │ │ │ │ ├── land-mine-on.svg │ │ │ │ │ ├── landmark-dome.svg │ │ │ │ │ ├── landmark-flag.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-file.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── lari-sign.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── left-long.svg │ │ │ │ │ ├── left-right.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── lines-leaning.svg │ │ │ │ │ ├── link-slash.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-check.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── litecoin-sign.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── location-crosshairs.svg │ │ │ │ │ ├── location-dot.svg │ │ │ │ │ ├── location-pin-lock.svg │ │ │ │ │ ├── location-pin.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── locust.svg │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ ├── lungs.svg │ │ │ │ │ ├── m.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ │ ├── magnifying-glass.svg │ │ │ │ │ ├── manat-sign.svg │ │ │ │ │ ├── map-location-dot.svg │ │ │ │ │ ├── map-location.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ │ ├── mars-and-venus.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ │ ├── martini-glass.svg │ │ │ │ │ ├── mask-face.svg │ │ │ │ │ ├── mask-ventilator.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── masks-theater.svg │ │ │ │ │ ├── mattress-pillow.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ │ ├── microphone-lines.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── mill-sign.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-button.svg │ │ │ │ │ ├── mobile-retro.svg │ │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ │ ├── mobile-screen.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-bills.svg │ │ │ │ │ ├── money-check-dollar.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── mosquito-net.svg │ │ │ │ │ ├── mosquito.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mound.svg │ │ │ │ │ ├── mountain-city.svg │ │ │ │ │ ├── mountain-sun.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── mug-saucer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── n.svg │ │ │ │ │ ├── naira-sign.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── o.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── oil-well.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── p.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── paintbrush.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── panorama.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-clip.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-ruler.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-arrows-left-right.svg │ │ │ │ │ ├── people-carry-box.svg │ │ │ │ │ ├── people-group.svg │ │ │ │ │ ├── people-line.svg │ │ │ │ │ ├── people-pulling.svg │ │ │ │ │ ├── people-robbery.svg │ │ │ │ │ ├── people-roof.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ │ ├── person-biking.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ │ ├── person-burst.svg │ │ │ │ │ ├── person-cane.svg │ │ │ │ │ ├── person-chalkboard.svg │ │ │ │ │ ├── person-circle-check.svg │ │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ │ ├── person-circle-minus.svg │ │ │ │ │ ├── person-circle-plus.svg │ │ │ │ │ ├── person-circle-question.svg │ │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ │ ├── person-digging.svg │ │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ │ ├── person-dress-burst.svg │ │ │ │ │ ├── person-dress.svg │ │ │ │ │ ├── person-drowning.svg │ │ │ │ │ ├── person-falling-burst.svg │ │ │ │ │ ├── person-falling.svg │ │ │ │ │ ├── person-half-dress.svg │ │ │ │ │ ├── person-harassing.svg │ │ │ │ │ ├── person-hiking.svg │ │ │ │ │ ├── person-military-pointing.svg │ │ │ │ │ ├── person-military-rifle.svg │ │ │ │ │ ├── person-military-to-person.svg │ │ │ │ │ ├── person-praying.svg │ │ │ │ │ ├── person-pregnant.svg │ │ │ │ │ ├── person-rays.svg │ │ │ │ │ ├── person-rifle.svg │ │ │ │ │ ├── person-running.svg │ │ │ │ │ ├── person-shelter.svg │ │ │ │ │ ├── person-skating.svg │ │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ │ ├── person-skiing.svg │ │ │ │ │ ├── person-snowboarding.svg │ │ │ │ │ ├── person-swimming.svg │ │ │ │ │ ├── person-through-window.svg │ │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── peseta-sign.svg │ │ │ │ │ ├── peso-sign.svg │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-film.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-circle-check.svg │ │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-lock.svg │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ ├── plane-up.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── plant-wilt.svg │ │ │ │ │ ├── plate-wheat.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ │ ├── plug-circle-check.svg │ │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-minus.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── q.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── r.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── ranking-star.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ ├── rectangle-ad.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── right-from-bracket.svg │ │ │ │ │ ├── right-left.svg │ │ │ │ │ ├── right-long.svg │ │ │ │ │ ├── right-to-bracket.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road-barrier.svg │ │ │ │ │ ├── road-bridge.svg │ │ │ │ │ ├── road-circle-check.svg │ │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ │ ├── road-lock.svg │ │ │ │ │ ├── road-spikes.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rotate-left.svg │ │ │ │ │ ├── rotate-right.svg │ │ │ │ │ ├── rotate.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── rug.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── rupiah-sign.svg │ │ │ │ │ ├── s.svg │ │ │ │ │ ├── sack-dollar.svg │ │ │ │ │ ├── sack-xmark.svg │ │ │ │ │ ├── sailboat.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── scale-balanced.svg │ │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ │ ├── school-circle-check.svg │ │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ │ ├── school-flag.svg │ │ │ │ │ ├── school-lock.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── scissors.svg │ │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll-torah.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── section.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── share-nodes.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── sheet-plastic.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-cat.svg │ │ │ │ │ ├── shield-dog.svg │ │ │ │ │ ├── shield-halved.svg │ │ │ │ │ ├── shield-heart.svg │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shop-lock.svg │ │ │ │ │ ├── shop-slash.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shrimp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── shuttle-space.svg │ │ │ │ │ ├── sign-hanging.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── signs-post.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sink.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── soap.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spoon.svg │ │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-envelope.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-h.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-nfi.svg │ │ │ │ │ ├── square-parking.svg │ │ │ │ │ ├── square-pen.svg │ │ │ │ │ ├── square-person-confined.svg │ │ │ │ │ ├── square-phone-flip.svg │ │ │ │ │ ├── square-phone.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ │ ├── square-root-variable.svg │ │ │ │ │ ├── square-rss.svg │ │ │ │ │ ├── square-share-nodes.svg │ │ │ │ │ ├── square-up-right.svg │ │ │ │ │ ├── square-virus.svg │ │ │ │ │ ├── square-xmark.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── staff-aesculapius.svg │ │ │ │ │ ├── stairs.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sterling-sign.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── suitcase-medical.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── t.svg │ │ │ │ │ ├── table-cells-large.svg │ │ │ │ │ ├── table-cells.svg │ │ │ │ │ ├── table-columns.svg │ │ │ │ │ ├── table-list.svg │ │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-button.svg │ │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachograph-digital.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tarp-droplet.svg │ │ │ │ │ ├── tarp.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ │ ├── temperature-empty.svg │ │ │ │ │ ├── temperature-full.svg │ │ │ │ │ ├── temperature-half.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── temperature-quarter.svg │ │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ │ ├── tenge-sign.svg │ │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ │ ├── tent.svg │ │ │ │ │ ├── tents.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-slash.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-simple.svg │ │ │ │ │ ├── ticket.svg │ │ │ │ │ ├── timeline.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet-portable.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toilets-portable.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tornado.svg │ │ │ │ │ ├── tower-broadcast.svg │ │ │ │ │ ├── tower-cell.svg │ │ │ │ │ ├── tower-observation.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── trailer.svg │ │ │ │ │ ├── train-subway.svg │ │ │ │ │ ├── train-tram.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree-city.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── trowel-bricks.svg │ │ │ │ │ ├── trowel.svg │ │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ │ ├── truck-droplet.svg │ │ │ │ │ ├── truck-fast.svg │ │ │ │ │ ├── truck-field-un.svg │ │ │ │ │ ├── truck-field.svg │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ ├── truck-medical.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck-plane.svg │ │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ │ ├── turn-down.svg │ │ │ │ │ ├── turn-up.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── u.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── up-down-left-right.svg │ │ │ │ │ ├── up-down.svg │ │ │ │ │ ├── up-long.svg │ │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ │ ├── up-right-from-square.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-doctor.svg │ │ │ │ │ ├── user-gear.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-group.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-large-slash.svg │ │ │ │ │ ├── user-large.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-pen.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-xmark.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-between-lines.svg │ │ │ │ │ ├── users-gear.svg │ │ │ │ │ ├── users-line.svg │ │ │ │ │ ├── users-rays.svg │ │ │ │ │ ├── users-rectangle.svg │ │ │ │ │ ├── users-slash.svg │ │ │ │ │ ├── users-viewfinder.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── v.svg │ │ │ │ │ ├── van-shuttle.svg │ │ │ │ │ ├── vault.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ ├── vest.svg │ │ │ │ │ ├── vial-circle-check.svg │ │ │ │ │ ├── vial-virus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ │ ├── virus-covid.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── virus.svg │ │ │ │ │ ├── viruses.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volcano.svg │ │ │ │ │ ├── volleyball.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-xmark.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── w.svg │ │ │ │ │ ├── walkie-talkie.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ │ ├── wand-magic.svg │ │ │ │ │ ├── wand-sparkles.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water-ladder.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight-scale.svg │ │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ │ ├── wheat-awn.svg │ │ │ │ │ ├── wheelchair-move.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── whiskey-glass.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── worm.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ ├── xmark.svg │ │ │ │ │ ├── xmarks-lines.svg │ │ │ │ │ ├── y.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ └── z.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── js │ │ │ ├── custom │ │ │ │ ├── account │ │ │ │ │ ├── api-keys │ │ │ │ │ │ └── api-keys.js │ │ │ │ │ ├── orders │ │ │ │ │ │ └── classic.js │ │ │ │ │ ├── referrals │ │ │ │ │ │ └── referral-program.js │ │ │ │ │ ├── security │ │ │ │ │ │ ├── license-usage.js │ │ │ │ │ │ └── security-summary.js │ │ │ │ │ └── settings │ │ │ │ │ │ ├── deactivate-account.js │ │ │ │ │ │ ├── overview.js │ │ │ │ │ │ ├── profile-details.js │ │ │ │ │ │ └── signin-methods.js │ │ │ │ ├── alpine │ │ │ │ │ └── alpine.js │ │ │ │ ├── apps │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── calendar.js │ │ │ │ │ ├── chat │ │ │ │ │ │ └── chat.js │ │ │ │ │ ├── contacts │ │ │ │ │ │ ├── edit-contact.js │ │ │ │ │ │ └── view-contact.js │ │ │ │ │ ├── customers │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── export.js │ │ │ │ │ │ │ └── list.js │ │ │ │ │ │ ├── update.js │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── add-payment.js │ │ │ │ │ │ │ ├── adjust-balance.js │ │ │ │ │ │ │ ├── invoices.js │ │ │ │ │ │ │ ├── payment-method.js │ │ │ │ │ │ │ ├── payment-table.js │ │ │ │ │ │ │ └── statement.js │ │ │ │ │ ├── ecommerce │ │ │ │ │ │ ├── catalog │ │ │ │ │ │ │ ├── categories.js │ │ │ │ │ │ │ ├── products.js │ │ │ │ │ │ │ ├── save-category.js │ │ │ │ │ │ │ └── save-product.js │ │ │ │ │ │ ├── customers │ │ │ │ │ │ │ ├── details │ │ │ │ │ │ │ │ ├── add-address.js │ │ │ │ │ │ │ │ ├── add-auth-app.js │ │ │ │ │ │ │ │ ├── add-one-time-password.js │ │ │ │ │ │ │ │ ├── payment-method.js │ │ │ │ │ │ │ │ ├── transaction-history.js │ │ │ │ │ │ │ │ ├── update-address.js │ │ │ │ │ │ │ │ ├── update-password.js │ │ │ │ │ │ │ │ ├── update-phone.js │ │ │ │ │ │ │ │ └── update-profile.js │ │ │ │ │ │ │ └── listing │ │ │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ │ │ ├── export.js │ │ │ │ │ │ │ │ └── listing.js │ │ │ │ │ │ ├── reports │ │ │ │ │ │ │ ├── customer-orders │ │ │ │ │ │ │ │ └── customer-orders.js │ │ │ │ │ │ │ ├── returns │ │ │ │ │ │ │ │ └── returns.js │ │ │ │ │ │ │ ├── sales │ │ │ │ │ │ │ │ └── sales.js │ │ │ │ │ │ │ ├── shipping │ │ │ │ │ │ │ │ └── shipping.js │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── views.js │ │ │ │ │ │ ├── sales │ │ │ │ │ │ │ ├── listing.js │ │ │ │ │ │ │ └── save-order.js │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ └── settings.js │ │ │ │ │ ├── file-manager │ │ │ │ │ │ ├── list.js │ │ │ │ │ │ └── settings.js │ │ │ │ │ ├── inbox │ │ │ │ │ │ ├── compose.js │ │ │ │ │ │ ├── listing.js │ │ │ │ │ │ └── reply.js │ │ │ │ │ ├── invoices │ │ │ │ │ │ └── create.js │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ └── list.js │ │ │ │ │ │ ├── project │ │ │ │ │ │ │ └── project.js │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ └── settings.js │ │ │ │ │ │ ├── targets │ │ │ │ │ │ │ └── targets.js │ │ │ │ │ │ └── users │ │ │ │ │ │ │ └── users.js │ │ │ │ │ ├── subscriptions │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ │ ├── customer-select.js │ │ │ │ │ │ │ └── products.js │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── export.js │ │ │ │ │ │ │ └── list.js │ │ │ │ │ ├── support-center │ │ │ │ │ │ └── tickets │ │ │ │ │ │ │ └── create.js │ │ │ │ │ └── user-management │ │ │ │ │ │ ├── permissions │ │ │ │ │ │ ├── add-permission.js │ │ │ │ │ │ ├── list.js │ │ │ │ │ │ └── update-permission.js │ │ │ │ │ │ ├── roles │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ │ └── update-role.js │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── update-role.js │ │ │ │ │ │ │ └── view.js │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── list │ │ │ │ │ │ ├── add.js │ │ │ │ │ │ ├── export-users.js │ │ │ │ │ │ └── table.js │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── add-auth-app.js │ │ │ │ │ │ ├── add-one-time-password.js │ │ │ │ │ │ ├── add-schedule.js │ │ │ │ │ │ ├── add-task.js │ │ │ │ │ │ ├── update-details.js │ │ │ │ │ │ ├── update-email.js │ │ │ │ │ │ ├── update-password.js │ │ │ │ │ │ ├── update-role.js │ │ │ │ │ │ └── view.js │ │ │ │ ├── authentication │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── new-password.js │ │ │ │ │ │ └── password-reset.js │ │ │ │ │ ├── sign-in │ │ │ │ │ │ ├── general.js │ │ │ │ │ │ └── two-steps.js │ │ │ │ │ └── sign-up │ │ │ │ │ │ ├── coming-soon.js │ │ │ │ │ │ ├── free-trial.js │ │ │ │ │ │ └── general.js │ │ │ │ ├── documentation │ │ │ │ │ ├── base │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ └── advanced.js │ │ │ │ │ │ ├── indicator.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── rotate.js │ │ │ │ │ │ └── toasts.js │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── amcharts │ │ │ │ │ │ │ ├── charts.js │ │ │ │ │ │ │ ├── maps.js │ │ │ │ │ │ │ └── stock-charts.js │ │ │ │ │ │ ├── apexcharts.js │ │ │ │ │ │ ├── chartjs.js │ │ │ │ │ │ ├── flotcharts │ │ │ │ │ │ │ ├── axis.js │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── dynamic.js │ │ │ │ │ │ │ ├── pie.js │ │ │ │ │ │ │ ├── stack.js │ │ │ │ │ │ │ └── tracking.js │ │ │ │ │ │ └── google-charts │ │ │ │ │ │ │ ├── column.js │ │ │ │ │ │ │ ├── line.js │ │ │ │ │ │ │ └── pie.js │ │ │ │ │ ├── documentation.js │ │ │ │ │ ├── editors │ │ │ │ │ │ ├── ckeditor │ │ │ │ │ │ │ ├── balloon-block.js │ │ │ │ │ │ │ ├── balloon.js │ │ │ │ │ │ │ ├── classic.js │ │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ │ └── inline.js │ │ │ │ │ │ ├── quill │ │ │ │ │ │ │ ├── autosave.js │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ └── tinymce │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── hidden.js │ │ │ │ │ │ │ └── plugins.js │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── bootstrap-maxlength.js │ │ │ │ │ │ ├── clipboard.js │ │ │ │ │ │ ├── daterangepicker.js │ │ │ │ │ │ ├── dialer.js │ │ │ │ │ │ ├── dropzonejs.js │ │ │ │ │ │ ├── flatpickr.js │ │ │ │ │ │ ├── formrepeater │ │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ └── nested.js │ │ │ │ │ │ ├── formvalidation │ │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ ├── image-input.js │ │ │ │ │ │ ├── inputmask.js │ │ │ │ │ │ ├── multiselectsplitter.js │ │ │ │ │ │ ├── nouislider.js │ │ │ │ │ │ ├── password-meter.js │ │ │ │ │ │ ├── recaptcha.js │ │ │ │ │ │ ├── select2.js │ │ │ │ │ │ └── tagify.js │ │ │ │ │ ├── general │ │ │ │ │ │ ├── blockui.js │ │ │ │ │ │ ├── cropper.js │ │ │ │ │ │ ├── datatables │ │ │ │ │ │ │ ├── advanced.js │ │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── buttons.js │ │ │ │ │ │ │ ├── server-side.js │ │ │ │ │ │ │ └── subtable.js │ │ │ │ │ │ ├── draggable │ │ │ │ │ │ │ ├── cards.js │ │ │ │ │ │ │ ├── multiple-containers.js │ │ │ │ │ │ │ ├── restricted.js │ │ │ │ │ │ │ └── swappable.js │ │ │ │ │ │ ├── drawer.js │ │ │ │ │ │ ├── fullcalendar │ │ │ │ │ │ │ ├── background-events.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── drag-n-drop.js │ │ │ │ │ │ │ ├── locales.js │ │ │ │ │ │ │ ├── selectable-dates.js │ │ │ │ │ │ │ └── timezone.js │ │ │ │ │ │ ├── jkanban │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── color.js │ │ │ │ │ │ │ ├── fixed-height.js │ │ │ │ │ │ │ ├── restricted.js │ │ │ │ │ │ │ └── rich.js │ │ │ │ │ │ ├── jstree │ │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── checkable.js │ │ │ │ │ │ │ ├── contextual.js │ │ │ │ │ │ │ ├── customicons.js │ │ │ │ │ │ │ └── dragdrop.js │ │ │ │ │ │ ├── scroll.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── menu.js │ │ │ │ │ │ │ └── responsive.js │ │ │ │ │ │ ├── stepper.js │ │ │ │ │ │ ├── sweetalert.js │ │ │ │ │ │ ├── toastr.js │ │ │ │ │ │ ├── typed.js │ │ │ │ │ │ └── vis-timeline │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── group.js │ │ │ │ │ │ │ ├── interaction.js │ │ │ │ │ │ │ ├── style.js │ │ │ │ │ │ │ └── template.js │ │ │ │ │ └── search.js │ │ │ │ ├── intro.js │ │ │ │ ├── landing.js │ │ │ │ ├── layout-builder │ │ │ │ │ └── layout-builder.js │ │ │ │ ├── pages │ │ │ │ │ ├── careers │ │ │ │ │ │ └── apply.js │ │ │ │ │ ├── general │ │ │ │ │ │ └── contact.js │ │ │ │ │ ├── pricing │ │ │ │ │ │ └── general.js │ │ │ │ │ ├── social │ │ │ │ │ │ └── feeds.js │ │ │ │ │ └── user-profile │ │ │ │ │ │ └── followers.js │ │ │ │ ├── utilities │ │ │ │ │ ├── modals │ │ │ │ │ │ ├── bidding.js │ │ │ │ │ │ ├── create-account.js │ │ │ │ │ │ ├── create-api-key.js │ │ │ │ │ │ ├── create-app.js │ │ │ │ │ │ ├── create-campaign.js │ │ │ │ │ │ ├── create-project.js │ │ │ │ │ │ ├── create-project │ │ │ │ │ │ │ ├── budget.js │ │ │ │ │ │ │ ├── complete.js │ │ │ │ │ │ │ ├── files.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ │ ├── targets.js │ │ │ │ │ │ │ ├── team.js │ │ │ │ │ │ │ └── type.js │ │ │ │ │ │ ├── draggable.js │ │ │ │ │ │ ├── new-address.js │ │ │ │ │ │ ├── new-card.js │ │ │ │ │ │ ├── new-target.js │ │ │ │ │ │ ├── offer-a-deal │ │ │ │ │ │ │ ├── complete.js │ │ │ │ │ │ │ ├── details.js │ │ │ │ │ │ │ ├── finance.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── type.js │ │ │ │ │ │ ├── select-location.js │ │ │ │ │ │ ├── share-earn.js │ │ │ │ │ │ ├── top-up-wallet.js │ │ │ │ │ │ ├── two-factor-authentication.js │ │ │ │ │ │ ├── upgrade-plan.js │ │ │ │ │ │ └── users-search.js │ │ │ │ │ └── search │ │ │ │ │ │ └── horizontal.js │ │ │ │ └── widgets.js │ │ │ ├── scripts.bundle.js │ │ │ ├── scripts.bundle.min.js │ │ │ └── widgets.bundle.js │ │ ├── media │ │ │ ├── auth │ │ │ │ ├── sing_in.png │ │ │ │ └── sing_up.png │ │ │ ├── avatars │ │ │ │ └── blank.png │ │ │ ├── certificate │ │ │ │ ├── logo.webp │ │ │ │ ├── signature.webp │ │ │ │ └── watermark.webp │ │ │ ├── files │ │ │ │ └── upload.png │ │ │ ├── flags │ │ │ │ ├── en.png │ │ │ │ └── es.png │ │ │ ├── google │ │ │ │ └── logo.png │ │ │ ├── icons │ │ │ │ ├── 3ds.png │ │ │ │ ├── ai.png │ │ │ │ ├── bin.png │ │ │ │ ├── cad.png │ │ │ │ ├── css.png │ │ │ │ ├── default.png │ │ │ │ ├── dll.png │ │ │ │ ├── dmg.png │ │ │ │ ├── docx.png │ │ │ │ ├── dwg.png │ │ │ │ ├── eml.png │ │ │ │ ├── exe.png │ │ │ │ ├── gif.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jpg.png │ │ │ │ ├── mdb.png │ │ │ │ ├── mov.png │ │ │ │ ├── mp4.png │ │ │ │ ├── pdf.png │ │ │ │ ├── png.png │ │ │ │ ├── pptx.png │ │ │ │ ├── psd.png │ │ │ │ ├── rar.png │ │ │ │ ├── skp.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── vcf.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ │ ├── illustrations │ │ │ │ ├── certificate.png │ │ │ │ ├── sigma-1 │ │ │ │ │ └── 9.png │ │ │ │ └── sketchy-1 │ │ │ │ │ └── 4.png │ │ │ ├── logo │ │ │ │ ├── logo.webp │ │ │ │ ├── logo_favicon.webp │ │ │ │ └── logo_white.webp │ │ │ ├── mailchimp │ │ │ │ └── logo.png │ │ │ ├── method_payment │ │ │ │ ├── mercadopago.png.png │ │ │ │ ├── paypal.png │ │ │ │ ├── processout.svg │ │ │ │ ├── stripe.png │ │ │ │ └── transfer.png │ │ │ ├── misc │ │ │ │ └── pattern-1.jpg │ │ │ ├── patterns │ │ │ │ └── pattern-1.jpg │ │ │ ├── svg │ │ │ │ ├── brand-logos │ │ │ │ │ └── google-icon.svg │ │ │ │ ├── files │ │ │ │ │ ├── blank-image.svg │ │ │ │ │ └── zip.svg │ │ │ │ └── shapes │ │ │ │ │ └── top-green.png │ │ │ └── video │ │ │ │ └── blank-video.mp4 │ │ └── plugins │ │ │ ├── custom │ │ │ ├── ckeditor │ │ │ │ ├── ckeditor-balloon-block.bundle.js │ │ │ │ ├── ckeditor-balloon.bundle.js │ │ │ │ ├── ckeditor-classic.bundle.js │ │ │ │ ├── ckeditor-document.bundle.js │ │ │ │ ├── ckeditor-inline.bundle.js │ │ │ │ ├── ckeditor5-configuration.js │ │ │ │ ├── ckeditor5.css │ │ │ │ └── ckeditor5.js │ │ │ ├── cookiealert │ │ │ │ ├── cookiealert.bundle.css │ │ │ │ ├── cookiealert.bundle.js │ │ │ │ ├── cookiealert.bundle.rtl.css │ │ │ │ └── cookiealert.dark.bundle.css │ │ │ ├── cropper │ │ │ │ ├── cropper.bundle.css │ │ │ │ ├── cropper.bundle.js │ │ │ │ ├── cropper.bundle.rtl.css │ │ │ │ └── cropper.dark.bundle.css │ │ │ ├── datatables │ │ │ │ ├── datatables.bundle.css │ │ │ │ ├── datatables.bundle.js │ │ │ │ ├── datatables.bundle.rtl.css │ │ │ │ └── datatables.dark.bundle.css │ │ │ ├── draggable │ │ │ │ └── draggable.bundle.js │ │ │ ├── flotcharts │ │ │ │ └── flotcharts.bundle.js │ │ │ ├── formrepeater │ │ │ │ └── formrepeater.bundle.js │ │ │ ├── fslightbox │ │ │ │ └── fslightbox.bundle.js │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.bundle.css │ │ │ │ ├── fullcalendar.bundle.js │ │ │ │ ├── fullcalendar.bundle.rtl.css │ │ │ │ └── fullcalendar.dark.bundle.css │ │ │ ├── jkanban │ │ │ │ ├── jkanban.bundle.css │ │ │ │ ├── jkanban.bundle.js │ │ │ │ ├── jkanban.bundle.rtl.css │ │ │ │ └── jkanban.dark.bundle.css │ │ │ ├── jstree │ │ │ │ ├── 32px.png │ │ │ │ ├── jstree.bundle.css │ │ │ │ ├── jstree.bundle.js │ │ │ │ ├── jstree.bundle.rtl.css │ │ │ │ ├── jstree.dark.bundle.css │ │ │ │ └── throbber.gif │ │ │ ├── leaflet │ │ │ │ ├── leaflet.bundle.css │ │ │ │ ├── leaflet.bundle.js │ │ │ │ ├── leaflet.bundle.rtl.css │ │ │ │ └── leaflet.dark.bundle.css │ │ │ ├── prismjs │ │ │ │ ├── prismjs.bundle.css │ │ │ │ ├── prismjs.bundle.js │ │ │ │ ├── prismjs.bundle.rtl.css │ │ │ │ └── prismjs.dark.bundle.css │ │ │ ├── summernote │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ ├── summernote.woff │ │ │ │ │ └── summernote.woff2 │ │ │ │ ├── lang │ │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-az-AZ.js │ │ │ │ │ ├── summernote-az-AZ.min.js │ │ │ │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-da-DK.js │ │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-de-DE.js │ │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-el-GR.js │ │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-ES.js │ │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-EU.js │ │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-he-IL.js │ │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-id-ID.js │ │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-it-IT.js │ │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-th-TH.js │ │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ │ ├── summernote-uz-UZ.min.js │ │ │ │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ │ ├── summernote-zh-TW.min.js │ │ │ │ │ └── summernote-zh-TW.min.js.LICENSE.txt │ │ │ │ ├── plugin │ │ │ │ │ ├── databasic │ │ │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ │ │ └── summernote-ext-databasic.js │ │ │ │ │ ├── hello │ │ │ │ │ │ └── summernote-ext-hello.js │ │ │ │ │ └── specialchars │ │ │ │ │ │ └── summernote-ext-specialchars.js │ │ │ │ ├── summernote-bs4.css │ │ │ │ ├── summernote-bs4.js │ │ │ │ ├── summernote-bs4.js.map │ │ │ │ ├── summernote-bs4.min.css │ │ │ │ ├── summernote-bs4.min.js │ │ │ │ ├── summernote-bs4.min.js.LICENSE.txt │ │ │ │ ├── summernote-bs4.min.js.map │ │ │ │ ├── summernote-bs5.min.css │ │ │ │ ├── summernote-bs5.min.js │ │ │ │ ├── summernote-lite.css │ │ │ │ ├── summernote-lite.js │ │ │ │ ├── summernote-lite.js.map │ │ │ │ ├── summernote-lite.min.css │ │ │ │ ├── summernote-lite.min.js │ │ │ │ ├── summernote-lite.min.js.LICENSE.txt │ │ │ │ ├── summernote-lite.min.js.map │ │ │ │ ├── summernote.css │ │ │ │ ├── summernote.js │ │ │ │ ├── summernote.js.map │ │ │ │ ├── summernote.min.css │ │ │ │ ├── summernote.min.js │ │ │ │ ├── summernote.min.js.LICENSE.txt │ │ │ │ └── summernote.min.js.map │ │ │ ├── tinymce │ │ │ │ ├── skins │ │ │ │ │ ├── content │ │ │ │ │ │ ├── dark │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ │ └── content.rtl.css │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ │ └── content.rtl.css │ │ │ │ │ │ ├── document │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ │ └── content.rtl.css │ │ │ │ │ │ └── writer │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ │ └── content.rtl.css │ │ │ │ │ └── ui │ │ │ │ │ │ ├── oxide-dark │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── content.inline.css │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ ├── content.inline.min.rtl.css │ │ │ │ │ │ ├── content.inline.rtl.css │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ ├── content.mobile.css │ │ │ │ │ │ ├── content.mobile.min.css │ │ │ │ │ │ ├── content.mobile.min.rtl.css │ │ │ │ │ │ ├── content.mobile.rtl.css │ │ │ │ │ │ ├── content.rtl.css │ │ │ │ │ │ ├── skin.css │ │ │ │ │ │ ├── skin.min.css │ │ │ │ │ │ ├── skin.min.rtl.css │ │ │ │ │ │ ├── skin.mobile.css │ │ │ │ │ │ ├── skin.mobile.min.css │ │ │ │ │ │ ├── skin.mobile.min.rtl.css │ │ │ │ │ │ ├── skin.mobile.rtl.css │ │ │ │ │ │ ├── skin.rtl.css │ │ │ │ │ │ ├── skin.shadowdom.css │ │ │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ │ │ ├── skin.shadowdom.min.rtl.css │ │ │ │ │ │ └── skin.shadowdom.rtl.css │ │ │ │ │ │ └── oxide │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── content.inline.css │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ ├── content.inline.min.rtl.css │ │ │ │ │ │ ├── content.inline.rtl.css │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ ├── content.min.rtl.css │ │ │ │ │ │ ├── content.mobile.css │ │ │ │ │ │ ├── content.mobile.min.css │ │ │ │ │ │ ├── content.mobile.min.rtl.css │ │ │ │ │ │ ├── content.mobile.rtl.css │ │ │ │ │ │ ├── content.rtl.css │ │ │ │ │ │ ├── skin.css │ │ │ │ │ │ ├── skin.min.css │ │ │ │ │ │ ├── skin.min.rtl.css │ │ │ │ │ │ ├── skin.mobile.css │ │ │ │ │ │ ├── skin.mobile.min.css │ │ │ │ │ │ ├── skin.mobile.min.rtl.css │ │ │ │ │ │ ├── skin.mobile.rtl.css │ │ │ │ │ │ ├── skin.rtl.css │ │ │ │ │ │ ├── skin.shadowdom.css │ │ │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ │ │ ├── skin.shadowdom.min.rtl.css │ │ │ │ │ │ └── skin.shadowdom.rtl.css │ │ │ │ └── tinymce.bundle.js │ │ │ ├── typedjs │ │ │ │ └── typedjs.bundle.js │ │ │ └── vis-timeline │ │ │ │ ├── vis-timeline.bundle.css │ │ │ │ ├── vis-timeline.bundle.js │ │ │ │ ├── vis-timeline.bundle.rtl.css │ │ │ │ └── vis-timeline.dark.bundle.css │ │ │ └── global │ │ │ ├── fonts │ │ │ ├── @fortawesome │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── bootstrap-icons │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ └── bootstrap-icons.woff2 │ │ │ ├── fonticon │ │ │ │ ├── fonticon.css │ │ │ │ ├── fonticon.eot │ │ │ │ ├── fonticon.html │ │ │ │ ├── fonticon.scss │ │ │ │ ├── fonticon.svg │ │ │ │ ├── fonticon.ttf │ │ │ │ ├── fonticon.woff │ │ │ │ └── fonticon.woff2 │ │ │ └── line-awesome │ │ │ │ ├── la-brands-400.eot │ │ │ │ ├── la-brands-400.svg │ │ │ │ ├── la-brands-400.ttf │ │ │ │ ├── la-brands-400.woff │ │ │ │ ├── la-brands-400.woff2 │ │ │ │ ├── la-regular-400.eot │ │ │ │ ├── la-regular-400.svg │ │ │ │ ├── la-regular-400.ttf │ │ │ │ ├── la-regular-400.woff │ │ │ │ ├── la-regular-400.woff2 │ │ │ │ ├── la-solid-900.eot │ │ │ │ ├── la-solid-900.svg │ │ │ │ ├── la-solid-900.ttf │ │ │ │ ├── la-solid-900.woff │ │ │ │ └── la-solid-900.woff2 │ │ │ ├── plugins.bundle.css │ │ │ ├── plugins.bundle.js │ │ │ ├── plugins.bundle.rtl.css │ │ │ └── plugins.dark.bundle.css │ ├── ecommerce │ │ ├── css │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── configurator.css │ │ │ ├── custom-dark.css │ │ │ ├── custom.css │ │ │ ├── demo1.min.css │ │ │ ├── demo10.min.css │ │ │ ├── demo2.min.css │ │ │ ├── demo3.min.css │ │ │ ├── demo4.min.css │ │ │ ├── demo5.min.css │ │ │ ├── demo6.min.css │ │ │ ├── demo7.min.css │ │ │ ├── demo8.min.css │ │ │ ├── demo9.min.css │ │ │ ├── doc.min.css │ │ │ ├── plugins │ │ │ │ └── magnific-popup │ │ │ │ │ └── magnific-popup.css │ │ │ ├── style.css │ │ │ └── var.css │ │ ├── fonts │ │ │ ├── wolmart.eot │ │ │ ├── wolmart.svg │ │ │ ├── wolmart.ttf │ │ │ └── wolmart.woff │ │ ├── images │ │ │ ├── blog │ │ │ │ ├── clases-de-logotipos.webp │ │ │ │ └── tipos-de-sitio-web-para-tu-negocio.webp │ │ │ ├── contact │ │ │ │ └── whatsapp.webp │ │ │ ├── flags │ │ │ │ ├── en.png │ │ │ │ └── es.png │ │ │ ├── footer │ │ │ │ └── payment.png │ │ │ ├── home │ │ │ │ └── banner.webp │ │ │ ├── marketplace │ │ │ │ ├── amazon.png │ │ │ │ └── mercadolibre.png │ │ │ ├── partner │ │ │ │ ├── atolon.webp │ │ │ │ ├── cm.webp │ │ │ │ ├── gea.webp │ │ │ │ ├── globalpest.webp │ │ │ │ ├── goguvet.webp │ │ │ │ ├── guitarra-facil.png │ │ │ │ ├── ideanox.webp │ │ │ │ ├── serendip.webp │ │ │ │ └── sfericas.webp │ │ │ └── svg │ │ │ │ ├── icon-layout │ │ │ │ ├── wolmart-icon-3 column.svg │ │ │ │ └── wolmart-icon-list.svg │ │ │ │ └── shop-categories │ │ │ │ ├── wolmart-icon-bag.svg │ │ │ │ ├── wolmart-icon-beauty.svg │ │ │ │ ├── wolmart-icon-clothing.svg │ │ │ │ ├── wolmart-icon-computer.svg │ │ │ │ ├── wolmart-icon-electronic.svg │ │ │ │ ├── wolmart-icon-furniture.svg │ │ │ │ ├── wolmart-icon-sport.svg │ │ │ │ └── wolmart-icon-toy.svg │ │ ├── js │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ └── main.js │ │ └── vendor │ │ │ ├── animate │ │ │ └── animate.min.css │ │ │ ├── flipbook │ │ │ ├── css │ │ │ │ ├── .DS_Store │ │ │ │ ├── flipbook.style.css │ │ │ │ └── fonts │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ └── icomoon.woff │ │ │ ├── js │ │ │ │ ├── .DS_Store │ │ │ │ ├── cmaps │ │ │ │ │ ├── 78-EUC-H.bcmap │ │ │ │ │ ├── 78-EUC-V.bcmap │ │ │ │ │ ├── 78-H.bcmap │ │ │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ │ │ ├── 78-V.bcmap │ │ │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ │ │ ├── Add-H.bcmap │ │ │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ │ │ ├── Add-V.bcmap │ │ │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ │ │ ├── B5-H.bcmap │ │ │ │ │ ├── B5-V.bcmap │ │ │ │ │ ├── B5pc-H.bcmap │ │ │ │ │ ├── B5pc-V.bcmap │ │ │ │ │ ├── CNS-EUC-H.bcmap │ │ │ │ │ ├── CNS-EUC-V.bcmap │ │ │ │ │ ├── CNS1-H.bcmap │ │ │ │ │ ├── CNS1-V.bcmap │ │ │ │ │ ├── CNS2-H.bcmap │ │ │ │ │ ├── CNS2-V.bcmap │ │ │ │ │ ├── ETHK-B5-H.bcmap │ │ │ │ │ ├── ETHK-B5-V.bcmap │ │ │ │ │ ├── ETen-B5-H.bcmap │ │ │ │ │ ├── ETen-B5-V.bcmap │ │ │ │ │ ├── ETenms-B5-H.bcmap │ │ │ │ │ ├── ETenms-B5-V.bcmap │ │ │ │ │ ├── EUC-H.bcmap │ │ │ │ │ ├── EUC-V.bcmap │ │ │ │ │ ├── Ext-H.bcmap │ │ │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ │ │ ├── Ext-V.bcmap │ │ │ │ │ ├── GB-EUC-H.bcmap │ │ │ │ │ ├── GB-EUC-V.bcmap │ │ │ │ │ ├── GB-H.bcmap │ │ │ │ │ ├── GB-V.bcmap │ │ │ │ │ ├── GBK-EUC-H.bcmap │ │ │ │ │ ├── GBK-EUC-V.bcmap │ │ │ │ │ ├── GBK2K-H.bcmap │ │ │ │ │ ├── GBK2K-V.bcmap │ │ │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ │ │ ├── GBT-EUC-H.bcmap │ │ │ │ │ ├── GBT-EUC-V.bcmap │ │ │ │ │ ├── GBT-H.bcmap │ │ │ │ │ ├── GBT-V.bcmap │ │ │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ │ │ ├── H.bcmap │ │ │ │ │ ├── HKdla-B5-H.bcmap │ │ │ │ │ ├── HKdla-B5-V.bcmap │ │ │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ │ │ ├── HKm314-B5-H.bcmap │ │ │ │ │ ├── HKm314-B5-V.bcmap │ │ │ │ │ ├── HKm471-B5-H.bcmap │ │ │ │ │ ├── HKm471-B5-V.bcmap │ │ │ │ │ ├── HKscs-B5-H.bcmap │ │ │ │ │ ├── HKscs-B5-V.bcmap │ │ │ │ │ ├── Hankaku.bcmap │ │ │ │ │ ├── Hiragana.bcmap │ │ │ │ │ ├── KSC-EUC-H.bcmap │ │ │ │ │ ├── KSC-EUC-V.bcmap │ │ │ │ │ ├── KSC-H.bcmap │ │ │ │ │ ├── KSC-Johab-H.bcmap │ │ │ │ │ ├── KSC-Johab-V.bcmap │ │ │ │ │ ├── KSC-V.bcmap │ │ │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ │ │ ├── Katakana.bcmap │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NWP-H.bcmap │ │ │ │ │ ├── NWP-V.bcmap │ │ │ │ │ ├── RKSJ-H.bcmap │ │ │ │ │ ├── RKSJ-V.bcmap │ │ │ │ │ ├── Roman.bcmap │ │ │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ │ │ ├── V.bcmap │ │ │ │ │ └── WP-Symbol.bcmap │ │ │ │ ├── flipbook.book3.min.js │ │ │ │ ├── flipbook.min.js │ │ │ │ ├── flipbook.pdfservice.min.js │ │ │ │ ├── flipbook.swipe.min.js │ │ │ │ ├── flipbook.webgl.min.js │ │ │ │ ├── iscroll.min.js │ │ │ │ ├── pdf.min.js │ │ │ │ ├── pdf.worker.min.js │ │ │ │ └── three.min.js │ │ │ └── mp3 │ │ │ │ ├── turnPage.mp3 │ │ │ │ └── turnPage.ogg │ │ │ ├── floating-parallax │ │ │ └── parallax.min.js │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── frontend │ │ │ └── frontend.js │ │ │ ├── imagesloaded │ │ │ └── imagesloaded.pkgd.min.js │ │ │ ├── isotope │ │ │ └── isotope.pkgd.min.js │ │ │ ├── jquery.count-to │ │ │ └── jquery.count-to.min.js │ │ │ ├── jquery.countdown │ │ │ └── jquery.countdown.min.js │ │ │ ├── jquery.gmap │ │ │ └── jquery.gmap.min.js │ │ │ ├── jquery.plugin │ │ │ └── jquery.plugin.min.js │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ │ ├── magnific-popup │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.min.css │ │ │ ├── maps │ │ │ └── google-location.js │ │ │ ├── nouislider │ │ │ ├── nouislider.min.css │ │ │ └── nouislider.min.js │ │ │ ├── owl-carousel │ │ │ ├── owl.carousel.js │ │ │ ├── owl.carousel.min.css │ │ │ └── owl.carousel.min.js │ │ │ ├── parallax │ │ │ └── parallax.min.js │ │ │ ├── photoswipe │ │ │ ├── default-skin │ │ │ │ ├── default-skin.css │ │ │ │ ├── default-skin.min.css │ │ │ │ ├── default-skin.png │ │ │ │ ├── default-skin.svg │ │ │ │ └── preloader.gif │ │ │ ├── photoswipe-ui-default.js │ │ │ ├── photoswipe-ui-default.min.js │ │ │ ├── photoswipe.js │ │ │ ├── photoswipe.min.css │ │ │ └── photoswipe.min.js │ │ │ ├── skrollr │ │ │ ├── skrollr.js │ │ │ └── skrollr.min.js │ │ │ ├── sticky │ │ │ ├── sticky.js │ │ │ └── sticky.min.js │ │ │ ├── threesixty-degree │ │ │ ├── 360-degree-riewer.min.css │ │ │ ├── 360-degree-viewer.css │ │ │ ├── 360-degree-viewer.scss │ │ │ └── threesixty.min.js │ │ │ └── zoom │ │ │ └── jquery.zoom.js │ └── readme │ │ ├── c1.png │ │ ├── c10.png │ │ ├── c11.png │ │ ├── c12.png │ │ ├── c13.png │ │ ├── c14.jpeg │ │ ├── c15.jpeg │ │ ├── c16.jpeg │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ ├── c6.jpeg │ │ ├── c7.png │ │ ├── c8.png │ │ ├── c9.png │ │ └── install │ │ ├── install-1.jpeg │ │ ├── install-2.jpeg │ │ ├── install-3.jpeg │ │ ├── install-4.jpeg │ │ └── install-5.jpeg ├── favicon.ico ├── index.php ├── mix-manifest.json ├── robots.txt └── vendor │ └── livewire-charts │ ├── app.js │ └── app.js.LICENSE.txt ├── resources ├── lang │ ├── en.json │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── es.json │ ├── es │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── backup │ │ ├── en │ │ └── notifications.php │ │ └── es │ │ └── notifications.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── about │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── analytic-search │ │ ├── delete.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── banner │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── blog │ │ ├── category │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── comment │ │ │ └── index.blade.php │ │ ├── post │ │ │ ├── comment │ │ │ │ └── delete.blade.php │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ └── tag │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── catalog │ │ ├── brand │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── category │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── form │ │ │ │ └── _category.blade.php │ │ ├── gender │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── product │ │ │ ├── color │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ └── edit.blade.php │ │ │ ├── comment │ │ │ └── index.blade.php │ │ │ ├── product │ │ │ ├── color │ │ │ │ └── index.blade.php │ │ │ ├── comment │ │ │ │ ├── delete.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── import │ │ │ │ ├── form-wordpress.blade.php │ │ │ │ └── form.blade.php │ │ │ ├── index.blade.php │ │ │ ├── menu │ │ │ │ └── index.blade.php │ │ │ ├── partials │ │ │ │ ├── form │ │ │ │ │ ├── _description.blade.php │ │ │ │ │ ├── _detail.blade.php │ │ │ │ │ ├── _dimension.blade.php │ │ │ │ │ ├── _featured.blade.php │ │ │ │ │ ├── _gallery.blade.php │ │ │ │ │ ├── _general.blade.php │ │ │ │ │ ├── _image.blade.php │ │ │ │ │ ├── _marketplace.blade.php │ │ │ │ │ ├── _meta-tag.blade.php │ │ │ │ │ ├── _modal.blade.php │ │ │ │ │ ├── _shipping-class.blade.php │ │ │ │ │ ├── _status.blade.php │ │ │ │ │ └── _technical-datasheet.blade.php │ │ │ │ └── show │ │ │ │ │ ├── _analytic.blade.php │ │ │ │ │ ├── _general.blade.php │ │ │ │ │ └── _profile.blade.php │ │ │ ├── show.blade.php │ │ │ ├── similar │ │ │ │ └── index.blade.php │ │ │ └── size │ │ │ │ └── index.blade.php │ │ │ ├── similar │ │ │ ├── create.blade.php │ │ │ └── delete.blade.php │ │ │ └── size │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ └── edit.blade.php │ ├── comment │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ └── edit.blade.php │ ├── components │ │ ├── alert.blade.php │ │ ├── errors.blade.php │ │ ├── favicons.blade.php │ │ └── toastr.blade.php │ ├── configurator │ │ ├── budget │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── compatibility │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── fps │ │ │ └── index.blade.php │ │ ├── game │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── performance │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── stage │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── coupon │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ ├── blog │ │ │ └── index.blade.php │ │ ├── email-web │ │ │ └── index.blade.php │ │ ├── general │ │ │ └── index.blade.php │ │ └── order │ │ │ └── index.blade.php │ ├── email-web │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── gallery │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── layouts │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── main.blade.php │ │ ├── menu-module.blade.php │ │ ├── menu-submodule.blade.php │ │ ├── menu.blade.php │ │ └── sidebar.blade.php │ ├── order │ │ ├── order │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ │ ├── form │ │ │ │ │ ├── _address.blade.php │ │ │ │ │ ├── _billing-address.blade.php │ │ │ │ │ ├── _coupon.blade.php │ │ │ │ │ ├── _detail.blade.php │ │ │ │ │ ├── _product.blade.php │ │ │ │ │ ├── _shipping-address.blade.php │ │ │ │ │ ├── _shipping-method.blade.php │ │ │ │ │ └── _summary.blade.php │ │ │ │ └── show │ │ │ │ │ ├── _detail.blade.php │ │ │ │ │ ├── _general.blade.php │ │ │ │ │ └── _menu.blade.php │ │ │ ├── show.blade.php │ │ │ └── view.blade.php │ │ └── tracking │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ └── edit.blade.php │ ├── package │ │ ├── feature │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── package │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── partner │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── portfolio │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── promotion │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── question-answer │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── service │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── setting │ │ ├── access-google │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── access-mailchimp │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── access-payment │ │ │ ├── index.blade.php │ │ │ ├── mercadopago │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── paypal │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── stripe │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ └── transfer │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ ├── backup │ │ │ ├── delete.blade.php │ │ │ └── index.blade.php │ │ ├── certificate │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── configurator │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── contact │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── country │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── currency │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── general │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── log │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── menu │ │ │ └── index.blade.php │ │ ├── module-web │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── permission │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── popup │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── role │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── shipping-class │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── shipping-zone │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── state │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── tag-analytic │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── welcome │ │ │ └── index.blade.php │ ├── subscriber │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── team │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── testimony │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── user │ │ ├── log │ │ │ └── index.blade.php │ │ ├── menu │ │ │ └── index.blade.php │ │ ├── notification │ │ │ └── index.blade.php │ │ ├── order │ │ │ └── index.blade.php │ │ ├── permission │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── shipping-address │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── shipping-billing │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── user │ │ │ ├── create.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── _account-connect.blade.php │ │ │ ├── _impersonate.blade.php │ │ │ └── _profile.blade.php │ │ │ └── show.blade.php │ ├── video │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── wholesale │ │ ├── create.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ ├── main.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── ecommerce │ ├── about │ │ └── index.blade.php │ ├── account │ │ ├── billing-address │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── dashboard │ │ │ └── index.blade.php │ │ ├── menu │ │ │ └── index.blade.php │ │ ├── order │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── product-digital │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── profile │ │ │ ├── index.blade.php │ │ │ └── password.blade.php │ │ └── shipping-address │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── cart │ │ └── index.blade.php │ ├── category │ │ └── index.blade.php │ ├── checkout │ │ ├── complete.blade.php │ │ ├── index.blade.php │ │ ├── partials │ │ │ ├── index │ │ │ │ ├── billing-address │ │ │ │ │ ├── _create-diferent.blade.php │ │ │ │ │ ├── _create.blade.php │ │ │ │ │ └── _index.blade.php │ │ │ │ ├── coupon │ │ │ │ │ └── _index.blade.php │ │ │ │ ├── login │ │ │ │ │ └── _index.blade.php │ │ │ │ ├── order │ │ │ │ │ └── index.blade.php │ │ │ │ ├── shipping-address │ │ │ │ │ ├── _create-diferent.blade.php │ │ │ │ │ ├── _create.blade.php │ │ │ │ │ └── _index.blade.php │ │ │ │ ├── shipping-method │ │ │ │ │ └── _index.blade.php │ │ │ │ └── summary │ │ │ │ │ └── index.blade.php │ │ │ └── payment │ │ │ │ ├── address │ │ │ │ └── _index.blade.php │ │ │ │ ├── order │ │ │ │ └── _index.blade.php │ │ │ │ ├── payment │ │ │ │ └── _index.blade.php │ │ │ │ └── summary │ │ │ │ └── _index.blade.php │ │ └── payment.blade.php │ ├── compare │ │ └── index.blade.php │ ├── components │ │ ├── alert-impersonate.blade.php │ │ ├── alert.blade.php │ │ ├── cart-added.blade.php │ │ └── errors.blade.php │ ├── configurator │ │ ├── index.blade.php │ │ └── partials │ │ │ ├── _alerts.blade.php │ │ │ ├── _budget.blade.php │ │ │ ├── _errors.blade.php │ │ │ ├── _gallery.blade.php │ │ │ ├── _product.blade.php │ │ │ ├── _stage.blade.php │ │ │ ├── _summary.blade.php │ │ │ └── _tools.blade.php │ ├── contact │ │ └── index.blade.php │ ├── gallery │ │ └── index.blade.php │ ├── home │ │ └── index.blade.php │ ├── layouts │ │ ├── configurator │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ └── main.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── main.blade.php │ │ ├── menu-mobile │ │ │ ├── category.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── _category.blade.php │ │ └── menu │ │ │ ├── category.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ └── _category.blade.php │ ├── popup │ │ └── index.blade.php │ ├── post │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── product │ │ ├── index.blade.php │ │ ├── partials │ │ │ ├── index │ │ │ │ └── _product.blade.php │ │ │ └── show │ │ │ │ ├── _description.blade.php │ │ │ │ ├── _gallery.blade.php │ │ │ │ ├── _menu.blade.php │ │ │ │ ├── _product.blade.php │ │ │ │ ├── _related_product.blade.php │ │ │ │ └── _sidebar.blade.php │ │ └── show.blade.php │ ├── track-order │ │ └── index.blade.php │ └── wishlist │ │ └── index.blade.php │ ├── emails │ ├── cart │ │ └── forgotten.blade.php │ ├── comment │ │ └── create.blade.php │ ├── contact │ │ └── create.blade.php │ └── order │ │ ├── change-status.blade.php │ │ ├── create-admin.blade.php │ │ ├── create.blade.php │ │ ├── info-bank.blade.php │ │ └── tracking.blade.php │ ├── errors │ └── 404.blade.php │ ├── install │ ├── complete │ │ └── index.blade.php │ ├── database │ │ └── index.blade.php │ ├── email │ │ └── index.blade.php │ ├── general │ │ └── index.blade.php │ ├── layouts │ │ ├── footer.blade.php │ │ ├── main.blade.php │ │ └── menu.blade.php │ └── user │ │ └── index.blade.php │ ├── livewire │ ├── admin │ │ ├── about │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── analytic-search │ │ │ └── index.blade.php │ │ ├── banner │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── blog │ │ │ ├── category │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── post │ │ │ │ ├── form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ └── tag │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ ├── catalog │ │ │ ├── brand │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── category │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── gender │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ └── product │ │ │ │ ├── color │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ │ ├── product │ │ │ │ ├── form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ │ ├── similar │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ │ └── size │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ ├── comment │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── configurator │ │ │ ├── budget │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── compatibility │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── fps │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── game │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── performance │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ └── stage │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ ├── coupon │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── dashboard │ │ │ ├── blog │ │ │ │ └── index.blade.php │ │ │ ├── email-web │ │ │ │ └── index.blade.php │ │ │ ├── general │ │ │ │ └── index.blade.php │ │ │ └── order │ │ │ │ └── index.blade.php │ │ ├── email-web │ │ │ └── index.blade.php │ │ ├── gallery │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── layouts │ │ │ └── notification.blade.php │ │ ├── order │ │ │ ├── email │ │ │ │ └── resend.blade.php │ │ │ ├── order │ │ │ │ ├── form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── status │ │ │ │ └── form.blade.php │ │ │ └── tracking │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ ├── package │ │ │ ├── feature │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ └── package │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ ├── partner │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── portfolio │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── promotion │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── question-answer │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── service │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── setting │ │ │ ├── access-google │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── access-mailchimp │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── access-payment │ │ │ │ ├── index.blade.php │ │ │ │ ├── mercadopago │ │ │ │ │ ├── form.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── paypal │ │ │ │ │ ├── form.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── stripe │ │ │ │ │ ├── form.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ └── transfer │ │ │ │ │ ├── form.blade.php │ │ │ │ │ └── index.blade.php │ │ │ ├── backup │ │ │ │ └── index.blade.php │ │ │ ├── certificate │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── configurator │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── contact │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── country │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── currency │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── general │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── log │ │ │ │ └── index.blade.php │ │ │ ├── module-web │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── permission │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── popup │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── role │ │ │ │ ├── form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── shipping-class │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── shipping-zone │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── state │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ └── tag-analytic │ │ │ │ └── form.blade.php │ │ ├── subscriber │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── team │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── testimony │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── user │ │ │ ├── notification │ │ │ │ └── index.blade.php │ │ │ ├── permission │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── shipping-address │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── shipping-billing │ │ │ │ ├── form.blade.php │ │ │ │ └── index.blade.php │ │ │ └── user │ │ │ │ ├── form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ ├── video │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ └── wholesale │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ └── ecommerce │ │ ├── account │ │ ├── billing-address │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── dashboard │ │ │ └── index.blade.php │ │ ├── order │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── product-digital │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── profile │ │ │ ├── form.blade.php │ │ │ └── password.blade.php │ │ └── shipping-address │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── blog │ │ ├── index.blade.php │ │ ├── show.blade.php │ │ └── sidebar.blade.php │ │ ├── cart │ │ ├── index.blade.php │ │ └── mini.blade.php │ │ ├── category │ │ └── index.blade.php │ │ ├── checkout │ │ ├── complete.blade.php │ │ ├── index.blade.php │ │ └── payment.blade.php │ │ ├── comment │ │ ├── form.blade.php │ │ └── index.blade.php │ │ ├── compare │ │ ├── index.blade.php │ │ └── mini.blade.php │ │ ├── configurator │ │ └── index.blade.php │ │ ├── contact │ │ └── index.blade.php │ │ ├── layouts │ │ ├── cart.blade.php │ │ ├── compare.blade.php │ │ ├── menu-category.blade.php │ │ ├── menu-mobile-category.blade.php │ │ ├── search.blade.php │ │ ├── tag-analytic-footer.blade.php │ │ ├── tag-analytic-header.blade.php │ │ └── wishlist.blade.php │ │ ├── popup │ │ ├── index.blade.php │ │ └── js.blade.php │ │ ├── product │ │ ├── index.blade.php │ │ └── show.blade.php │ │ ├── subscriber │ │ ├── index.blade.php │ │ └── popup.blade.php │ │ ├── track-order │ │ └── index.blade.php │ │ └── wishlist │ │ ├── index.blade.php │ │ └── mini.blade.php │ └── vendor │ ├── livewire │ ├── bootstrap.blade.php │ ├── simple-bootstrap.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── notifications │ └── email.blade.php │ └── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ ├── simple-default.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php ├── routes ├── admin.php ├── api.php ├── auth.php ├── channels.php ├── console.php ├── ecommerce.php └── install.php ├── server.php ├── storage ├── app │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.docker/nginx/certs/app.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/nginx/certs/app.crt -------------------------------------------------------------------------------- /.docker/nginx/certs/app.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/nginx/certs/app.key -------------------------------------------------------------------------------- /.docker/nginx/config/app-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/nginx/config/app-ssl.conf -------------------------------------------------------------------------------- /.docker/nginx/config/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/nginx/config/app.conf -------------------------------------------------------------------------------- /.docker/nginx/log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/php/Dockerfile -------------------------------------------------------------------------------- /.docker/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.docker/php/php.ini -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/Admin/Cart/CartForgotten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Console/Commands/Admin/Cart/CartForgotten.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/Admin/Product/ProductExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Exports/Admin/Product/ProductExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Blog/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Controllers/Admin/Blog/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/SocialController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Controllers/Auth/SocialController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/About/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/About/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/About/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/About/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/AnalyticSearch/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/AnalyticSearch/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Banner/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Banner/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Banner/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Banner/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Category/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Category/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Category/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Category/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Post/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Post/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Post/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Post/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Post/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Post/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Tag/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Tag/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Blog/Tag/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Blog/Tag/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Catalog/Brand/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Catalog/Brand/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Catalog/Brand/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Catalog/Brand/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Catalog/Category/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Catalog/Category/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Catalog/Gender/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Catalog/Gender/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Catalog/Gender/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Catalog/Gender/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Comment/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Comment/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Comment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Comment/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Configurator/Fps/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Configurator/Fps/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Coupon/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Coupon/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Coupon/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Coupon/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Dashboard/Blog/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Dashboard/Blog/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Dashboard/Order/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Dashboard/Order/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/EmailWeb/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/EmailWeb/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Gallery/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Gallery/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Gallery/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Gallery/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Layouts/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Layouts/Notification.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Email/Resend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Email/Resend.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Order/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Order/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Order/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Order/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Order/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Order/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Status/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Status/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Tracking/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Tracking/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Order/Tracking/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Order/Tracking/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Package/Feature/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Package/Feature/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Package/Feature/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Package/Feature/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Package/Package/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Package/Package/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Package/Package/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Package/Package/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Partner/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Partner/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Partner/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Partner/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Portfolio/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Portfolio/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Portfolio/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Portfolio/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Portfolio/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Portfolio/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Promotion/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Promotion/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Promotion/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Promotion/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/QuestionAnswer/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/QuestionAnswer/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/QuestionAnswer/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/QuestionAnswer/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Service/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Service/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Service/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Service/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Service/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Service/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Backup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Backup/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Contact/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Contact/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Contact/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Contact/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Country/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Country/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Country/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Country/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Currency/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Currency/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/General/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/General/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/General/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/General/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Log/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Log/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Popup/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Popup/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Popup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Popup/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Role/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Role/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Role/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Role/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/Role/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/Role/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/State/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/State/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Setting/State/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Setting/State/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Subscriber/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Subscriber/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Subscriber/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Subscriber/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Team/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Team/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Team/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Team/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Testimony/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Testimony/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Testimony/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Testimony/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/User/Permission/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/User/Permission/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/User/Permission/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/User/Permission/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/User/User/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/User/User/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/User/User/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/User/User/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/User/User/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/User/User/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Video/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Video/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Video/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Video/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Wholesale/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Wholesale/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Admin/Wholesale/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Admin/Wholesale/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Blog/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Blog/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Blog/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Blog/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Blog/Sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Blog/Sidebar.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Cart/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Cart/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Cart/Mini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Cart/Mini.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Category/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Category/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Checkout/Complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Checkout/Complete.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Checkout/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Checkout/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Checkout/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Checkout/Payment.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Comment/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Comment/Form.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Comment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Comment/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Compare/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Compare/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Compare/Mini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Compare/Mini.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Contact/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Contact/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Layouts/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Layouts/Cart.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Layouts/Compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Layouts/Compare.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Layouts/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Layouts/Search.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Layouts/Wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Layouts/Wishlist.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Popup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Popup/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Popup/Js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Popup/Js.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Product/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Product/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Product/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Product/Show.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Subscriber/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Subscriber/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Subscriber/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Subscriber/Popup.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/TrackOrder/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/TrackOrder/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Wishlist/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Wishlist/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ecommerce/Wishlist/Mini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Livewire/Ecommerce/Wishlist/Mini.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/BillingAddressMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/BillingAddressMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/CurrencyMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/CurrencyMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/InstallMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/InstallMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/LanguageMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/LanguageMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/OrderMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/OrderMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/PanelMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/PanelMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/ShippingAddressMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/ShippingAddressMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/StoreMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/StoreMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/UserMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/OrWithFilterUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/OrWithFilterUsers.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/WithFilterMyUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/WithFilterMyUsers.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/WithFilterThroughUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/WithFilterThroughUser.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/WithFilterThroughUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/WithFilterThroughUsers.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/WithFilterUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/WithFilterUser.php -------------------------------------------------------------------------------- /app/Http/Traits/Admin/WithFilterUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Http/Traits/Admin/WithFilterUsers.php -------------------------------------------------------------------------------- /app/Imports/Admin/Product/ProductImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Imports/Admin/Product/ProductImport.php -------------------------------------------------------------------------------- /app/Listeners/MailSuccessfulDatabaseBackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Listeners/MailSuccessfulDatabaseBackup.php -------------------------------------------------------------------------------- /app/Mail/Blog/PostCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Blog/PostCreate.php -------------------------------------------------------------------------------- /app/Mail/Cart/CartForgotten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Cart/CartForgotten.php -------------------------------------------------------------------------------- /app/Mail/Comment/CommentCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Comment/CommentCreate.php -------------------------------------------------------------------------------- /app/Mail/Contact/ContactCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Contact/ContactCreate.php -------------------------------------------------------------------------------- /app/Mail/Order/OrderChangeStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Order/OrderChangeStatus.php -------------------------------------------------------------------------------- /app/Mail/Order/OrderCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Order/OrderCreate.php -------------------------------------------------------------------------------- /app/Mail/Order/OrderInfoBank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Order/OrderInfoBank.php -------------------------------------------------------------------------------- /app/Mail/Order/OrderTrackingNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Mail/Order/OrderTrackingNumber.php -------------------------------------------------------------------------------- /app/Models/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/About.php -------------------------------------------------------------------------------- /app/Models/AnalyticSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/AnalyticSearch.php -------------------------------------------------------------------------------- /app/Models/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Banner.php -------------------------------------------------------------------------------- /app/Models/BillingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/BillingAddress.php -------------------------------------------------------------------------------- /app/Models/BlogCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/BlogCategory.php -------------------------------------------------------------------------------- /app/Models/BlogPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/BlogPost.php -------------------------------------------------------------------------------- /app/Models/BlogTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/BlogTag.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorBudget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorBudget.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorBudgetProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorBudgetProduct.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorChipset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorChipset.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorCompatibility.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorFPS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorFPS.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorGame.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorPerformance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorPerformance.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorStage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorStage.php -------------------------------------------------------------------------------- /app/Models/ConfiguratorStageProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ConfiguratorStageProduct.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Coupon.php -------------------------------------------------------------------------------- /app/Models/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Currency.php -------------------------------------------------------------------------------- /app/Models/EmailWeb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/EmailWeb.php -------------------------------------------------------------------------------- /app/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/File.php -------------------------------------------------------------------------------- /app/Models/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Gallery.php -------------------------------------------------------------------------------- /app/Models/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Image.php -------------------------------------------------------------------------------- /app/Models/ModuleWeb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ModuleWeb.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/OrderTracking.php -------------------------------------------------------------------------------- /app/Models/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Package.php -------------------------------------------------------------------------------- /app/Models/PackageFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/PackageFeature.php -------------------------------------------------------------------------------- /app/Models/Partner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Partner.php -------------------------------------------------------------------------------- /app/Models/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Popup.php -------------------------------------------------------------------------------- /app/Models/Portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Portfolio.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductBrand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductBrand.php -------------------------------------------------------------------------------- /app/Models/ProductCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductCategory.php -------------------------------------------------------------------------------- /app/Models/ProductColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductColor.php -------------------------------------------------------------------------------- /app/Models/ProductGender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductGender.php -------------------------------------------------------------------------------- /app/Models/ProductSimilar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductSimilar.php -------------------------------------------------------------------------------- /app/Models/ProductSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ProductSize.php -------------------------------------------------------------------------------- /app/Models/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Profile.php -------------------------------------------------------------------------------- /app/Models/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Promotion.php -------------------------------------------------------------------------------- /app/Models/QuestionAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/QuestionAnswer.php -------------------------------------------------------------------------------- /app/Models/Reaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Reaction.php -------------------------------------------------------------------------------- /app/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Review.php -------------------------------------------------------------------------------- /app/Models/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Service.php -------------------------------------------------------------------------------- /app/Models/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Session.php -------------------------------------------------------------------------------- /app/Models/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ShippingAddress.php -------------------------------------------------------------------------------- /app/Models/ShippingClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ShippingClass.php -------------------------------------------------------------------------------- /app/Models/ShippingPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ShippingPrice.php -------------------------------------------------------------------------------- /app/Models/ShippingZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/ShippingZone.php -------------------------------------------------------------------------------- /app/Models/Shoppingcart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Shoppingcart.php -------------------------------------------------------------------------------- /app/Models/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/State.php -------------------------------------------------------------------------------- /app/Models/Subscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Subscriber.php -------------------------------------------------------------------------------- /app/Models/TagAnalytic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/TagAnalytic.php -------------------------------------------------------------------------------- /app/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Team.php -------------------------------------------------------------------------------- /app/Models/Testimony.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Testimony.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Video.php -------------------------------------------------------------------------------- /app/Models/Wholesale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/Wholesale.php -------------------------------------------------------------------------------- /app/Models/WholesaleDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Models/WholesaleDetail.php -------------------------------------------------------------------------------- /app/Notifications/Comment/CommentCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Notifications/Comment/CommentCreate.php -------------------------------------------------------------------------------- /app/Notifications/Contact/ContactCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Notifications/Contact/ContactCreate.php -------------------------------------------------------------------------------- /app/Notifications/Order/OrderCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Notifications/Order/OrderCreate.php -------------------------------------------------------------------------------- /app/Notifications/Susbcriber/SubscriberCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Notifications/Susbcriber/SubscriberCreate.php -------------------------------------------------------------------------------- /app/Notifications/User/UserCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Notifications/User/UserCreate.php -------------------------------------------------------------------------------- /app/Observers/EmailWebObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/EmailWebObserver.php -------------------------------------------------------------------------------- /app/Observers/FileObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/FileObserver.php -------------------------------------------------------------------------------- /app/Observers/ImageObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/ImageObserver.php -------------------------------------------------------------------------------- /app/Observers/OrderObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/OrderObserver.php -------------------------------------------------------------------------------- /app/Observers/SubscriberObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/SubscriberObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TranslatableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/Providers/TranslatableServiceProvider.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activitylog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/activitylog.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/cart.php -------------------------------------------------------------------------------- /config/certificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/certificate.php -------------------------------------------------------------------------------- /config/configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/configurator.php -------------------------------------------------------------------------------- /config/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/contact.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoodectTechnologies/LaraShop---Big-eCommerce-Laravel-9/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/currency.php: -------------------------------------------------------------------------------- 1 |