├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Enums │ ├── CartEnum.php │ ├── CategoryTypeEnum.php │ ├── DiscountCodeTypeEnum.php │ ├── OrderStatusEnum.php │ ├── PageTypeEnum.php │ ├── PaymentMethodEnum.php │ └── StockMovementOperationEnum.php ├── Filament │ ├── Pages │ │ └── Dashboard.php │ ├── Resources │ │ ├── AttributeResource.php │ │ ├── AttributeResource │ │ │ ├── Pages │ │ │ │ ├── CreateAttribute.php │ │ │ │ ├── EditAttribute.php │ │ │ │ └── ListAttributes.php │ │ │ └── RelationManagers │ │ │ │ └── AttributeOptionsRelationManager.php │ │ ├── AuthorResource.php │ │ ├── AuthorResource │ │ │ └── Pages │ │ │ │ ├── CreateAuthor.php │ │ │ │ ├── EditAuthor.php │ │ │ │ └── ListAuthors.php │ │ ├── BlogResource.php │ │ ├── BlogResource │ │ │ └── Pages │ │ │ │ ├── CreateBlog.php │ │ │ │ ├── EditBlog.php │ │ │ │ └── ListBlogs.php │ │ ├── CategoryResource.php │ │ ├── CategoryResource │ │ │ └── Pages │ │ │ │ ├── CreateCategory.php │ │ │ │ ├── EditCategory.php │ │ │ │ └── ListCategories.php │ │ ├── ColorResource.php │ │ ├── ColorResource │ │ │ └── Pages │ │ │ │ ├── CreateColor.php │ │ │ │ ├── EditColor.php │ │ │ │ └── ListColors.php │ │ ├── DepartmentResource.php │ │ ├── DepartmentResource │ │ │ └── Pages │ │ │ │ ├── CreateDepartment.php │ │ │ │ ├── EditDepartment.php │ │ │ │ └── ListDepartments.php │ │ ├── OrderResource.php │ │ ├── OrderResource │ │ │ ├── Pages │ │ │ │ ├── CreateOrder.php │ │ │ │ ├── EditOrder.php │ │ │ │ ├── ListOrders.php │ │ │ │ └── ViewOrder.php │ │ │ └── Widgets │ │ │ │ └── OrderStatsOverview.php │ │ ├── PageResource.php │ │ ├── PageResource │ │ │ ├── Pages │ │ │ │ ├── CreatePage.php │ │ │ │ ├── EditPage.php │ │ │ │ └── ListPages.php │ │ │ └── RelationManagers │ │ │ │ └── BannersRelationManager.php │ │ ├── ProductResource.php │ │ ├── ProductResource │ │ │ ├── Pages │ │ │ │ ├── CreateProduct.php │ │ │ │ ├── EditProduct.php │ │ │ │ ├── ListProducts.php │ │ │ │ ├── ViewProductSpecifications.php │ │ │ │ └── ViewProductStock.php │ │ │ └── RelationManagers │ │ │ │ ├── ImagesRelationManager.php │ │ │ │ ├── OrderProductsRelationManager.php │ │ │ │ ├── SkusRelationManager.php │ │ │ │ └── SpecificationsRelationManager.php │ │ ├── SizeResource.php │ │ ├── SizeResource │ │ │ └── Pages │ │ │ │ ├── CreateSize.php │ │ │ │ ├── EditSize.php │ │ │ │ └── ListSizes.php │ │ ├── StockAdjustmentResource.php │ │ ├── StockAdjustmentResource │ │ │ └── Pages │ │ │ │ ├── CreateStockAdjustment.php │ │ │ │ ├── EditStockAdjustment.php │ │ │ │ └── ListStockAdjustments.php │ │ ├── UserResource.php │ │ └── UserResource │ │ │ ├── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ ├── ListUsers.php │ │ │ └── ViewUserOrders.php │ │ │ └── RelationManagers │ │ │ └── OrdersRelationManager.php │ └── Widgets │ │ ├── CategorySalesChart.php │ │ ├── LatestSalesWidget.php │ │ ├── SalesChart.php │ │ └── StatsOverview.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── BlogController.php │ │ ├── Checkout │ │ │ ├── CheckoutController.php │ │ │ ├── DiscountCheckoutController.php │ │ │ └── PaymentCheckoutController.php │ │ ├── Controller.php │ │ ├── DepartmentController.php │ │ ├── NewsletterController.php │ │ ├── PageController.php │ │ ├── Profile │ │ │ ├── ProfileController.php │ │ │ └── ProfileOrderController.php │ │ ├── ProfileController.php │ │ ├── SearchController.php │ │ └── ShoppingCartController.php │ ├── Middleware │ │ ├── HandleInertiaRequests.php │ │ └── ProductInSession.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── CheckoutProductRequest.php │ │ ├── DiscountCodeRequest.php │ │ ├── OrderUserRequest.php │ │ └── ProfileUpdateRequest.php │ └── Resources │ │ ├── AttributeResource.php │ │ ├── AttributeValueResource.php │ │ ├── CartResource.php │ │ ├── CategoryResource.php │ │ ├── ColorResource.php │ │ ├── DepartmentResource.php │ │ ├── ImageResource.php │ │ ├── MetaTagResource.php │ │ ├── OrderAttributeResource.php │ │ ├── OrderProductResource.php │ │ ├── OrderResource.php │ │ ├── PageResource.php │ │ ├── PaymentResource.php │ │ ├── PostResource.php │ │ ├── ProductCardResource.php │ │ ├── ProductResource.php │ │ ├── Search │ │ ├── AttributeFilterResource.php │ │ ├── AttributeValueFilterResource.php │ │ ├── CategoryFilterResource.php │ │ └── SearchResource.php │ │ ├── SizeResource.php │ │ ├── SkuResource.php │ │ ├── UserResource.php │ │ ├── VariantProductResource.php │ │ ├── VariantResource.php │ │ └── VariantSizeResource.php ├── Models │ ├── Attribute.php │ ├── AttributeOption.php │ ├── Author.php │ ├── Blog.php │ ├── Brand.php │ ├── Category.php │ ├── Color.php │ ├── Department.php │ ├── DiscountCode.php │ ├── Image.php │ ├── MetaTag.php │ ├── Order.php │ ├── OrderProduct.php │ ├── Page.php │ ├── Payment.php │ ├── Product.php │ ├── Size.php │ ├── Sku.php │ ├── Specification.php │ ├── SpecificationValue.php │ ├── StockAdjustment.php │ ├── User.php │ └── Variant.php ├── Providers │ ├── AppServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ └── TelescopeServiceProvider.php ├── Rules │ ├── ShoppingCartStoreRule.php │ └── ValidateProductRule.php └── Services │ ├── CartService.php │ ├── CheckoutService.php │ ├── DiscountCodeService.php │ ├── InvoiceService.php │ ├── OrderService.php │ ├── PaymentService.php │ ├── ProductService.php │ ├── SearchProductService.php │ ├── SettingService.php │ └── StockService.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filament.php ├── filesystems.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── services.php ├── session.php ├── settings.json ├── shopping-cart.php └── telescope.php ├── database ├── .gitignore ├── factories │ ├── AttributeFactory.php │ ├── AttributeOptionFactory.php │ ├── AuthorFactory.php │ ├── BlogFactory.php │ ├── BrandFactory.php │ ├── CategoryFactory.php │ ├── DepartmentFactory.php │ ├── DiscountCodeFactory.php │ ├── ImageFactory.php │ ├── MetaTagFactory.php │ ├── PageFactory.php │ ├── PaymentFactory.php │ ├── SpecificationFactory.php │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2021_09_23_044847_create_products_table.php │ ├── 2021_09_23_052425_create_brands_table.php │ ├── 2021_09_23_055657_create_categories_table.php │ ├── 2021_09_26_160326_create_specifications_table.php │ ├── 2021_10_07_072014_create_images_table.php │ ├── 2021_10_12_081302_create_cart_table.php │ ├── 2022_06_24_134100_create_orders_table.php │ ├── 2023_04_13_022750_create_pages_table.php │ ├── 2023_04_26_063402_create_blog_table.php │ ├── 2023_05_17_040923_create_payments_table.php │ ├── 2023_05_18_033747_create_discount_codes_table.php │ ├── 2023_06_28_031008_create_departments_table.php │ ├── 2023_07_03_081325_create_attributes_table.php │ ├── 2024_08_07_193650_create_permission_tables.php │ ├── 2024_08_13_060952_create_telescope_entries_table.php │ ├── 2024_08_18_015820_create_sizes_table.php │ ├── 2024_08_18_015838_create_colors_table.php │ ├── 2024_09_07_054451_create_meta_tags_table.php │ └── 2024_09_19_004917_create_stock_adjustments_table.php └── seeders │ ├── AttributeSeeder.php │ ├── BlogSeeder.php │ ├── BrandSeeder.php │ ├── CategorySeeder.php │ ├── ColorSizeSeeder.php │ ├── DatabaseSeeder.php │ ├── DiscountCodeSeeder.php │ ├── MetaTagSeeder.php │ ├── OrderSeeder.php │ ├── PageSeeder.php │ ├── PresentationSeeder.php │ ├── ProductSeeder.php │ ├── SkuSeeder.php │ ├── SpecificationSeeder.php │ ├── StockAdjustmentSeeder.php │ ├── UserSeeder.php │ └── VariantSeeder.php ├── jsconfig.json ├── lang ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── es │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── img │ ├── authors │ │ ├── author-1.jpg │ │ ├── author-10.jpg │ │ ├── author-2.jpg │ │ ├── author-3.jpg │ │ ├── author-4.jpg │ │ ├── author-5.jpg │ │ ├── author-6.jpg │ │ ├── author-7.jpg │ │ ├── author-8.jpg │ │ └── author-9.jpg │ ├── banners │ │ ├── Ropa-de-moda-patprimo-desktop-home-2-jul-23-4.jpg │ │ ├── banner-blog.jpg │ │ ├── banner-carousel-1.jpg │ │ ├── banner-carousel-2.jpg │ │ ├── banner-carousel-3.jpg │ │ ├── banner-home-10.jpg │ │ ├── banner-home-9.jpg │ │ ├── banner-section-1.jpg │ │ ├── banner-section-2.jpg │ │ └── banner-sidebar-search.jpg │ ├── blog │ │ ├── banner-blog.jpg │ │ ├── post-1.jpg │ │ ├── post-10.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ ├── post-6.jpg │ │ ├── post-7.jpg │ │ ├── post-8.jpg │ │ └── post-9.jpg │ ├── categories │ │ ├── abrigos.png │ │ ├── accesorios.png │ │ ├── bermudas-y-pantalonetas.png │ │ ├── bermudas-y-shorts.png │ │ ├── bermudas.png │ │ ├── blazers.png │ │ ├── blusas-y-camisas.png │ │ ├── blusas.png │ │ ├── buzos-y-chaquetas.png │ │ ├── calzado.png │ │ ├── camisas.png │ │ ├── camisetas-interior.png │ │ ├── camisetas.png │ │ ├── chaquetas.png │ │ ├── cuidado-personal.png │ │ ├── descanso.png │ │ ├── enterizos.png │ │ ├── faldas.png │ │ ├── guayaberas.png │ │ ├── jeans.png │ │ ├── leggins.png │ │ ├── pantalones.png │ │ ├── pijama.png │ │ ├── polos.png │ │ ├── ropa-deportiva.png │ │ ├── ropa-interior.png │ │ ├── sacos-y-busos.png │ │ ├── shorts.png │ │ ├── vestidos.png │ │ └── zapatos.png │ ├── colors │ │ ├── .jpg │ │ ├── aguamarina.jpg │ │ ├── amarillo.jpg │ │ ├── amarillo1.jpg │ │ ├── amarillopastel.jpg │ │ ├── avena.jpg │ │ ├── azul.jpg │ │ ├── azul1.jpg │ │ ├── azul10.jpg │ │ ├── azul2.jpg │ │ ├── azul3.jpg │ │ ├── azul4.jpg │ │ ├── azul5.jpg │ │ ├── azul6.jpg │ │ ├── azul7.jpg │ │ ├── azul8.jpg │ │ ├── azulclaro.jpg │ │ ├── azulmedio.jpg │ │ ├── azuloscuro.jpg │ │ ├── azulpastel.jpg │ │ ├── azulrey.jpg │ │ ├── beige.jpg │ │ ├── beige1.jpg │ │ ├── blanco.jpg │ │ ├── blanco1.jpg │ │ ├── blanco2.jpg │ │ ├── blanco3.jpg │ │ ├── cafe-1.jpg │ │ ├── cafe.jpg │ │ ├── cafe1.jpg │ │ ├── cafeclaro.jpg │ │ ├── cafeoscuro.jpg │ │ ├── camel.jpg │ │ ├── celeste.jpg │ │ ├── cereza.jpg │ │ ├── coral.jpg │ │ ├── crema.jpg │ │ ├── crudo.jpg │ │ ├── curuba.jpg │ │ ├── dorado.jpg │ │ ├── fucsia.jpg │ │ ├── gris.jpg │ │ ├── gris1.jpg │ │ ├── gris10.jpg │ │ ├── gris2.jpg │ │ ├── gris4.jpg │ │ ├── gris5.jpg │ │ ├── gris7.jpg │ │ ├── gris8.jpg │ │ ├── gris9.jpg │ │ ├── grisclaro.jpg │ │ ├── grisjaspe.jpg │ │ ├── grisoscuro.jpg │ │ ├── hueso.jpg │ │ ├── indigo.jpg │ │ ├── lila.jpg │ │ ├── mandarina.jpg │ │ ├── marfil.jpg │ │ ├── menta.jpg │ │ ├── morado.jpg │ │ ├── mostaza.jpg │ │ ├── naranja.jpg │ │ ├── negro.jpg │ │ ├── negro1.jpg │ │ ├── negro2.jpg │ │ ├── negro3.jpg │ │ ├── negro5.jpg │ │ ├── negro6.jpg │ │ ├── negro7.jpg │ │ ├── negro8.jpg │ │ ├── negro9.jpg │ │ ├── negrobinado.jpg │ │ ├── negrocarbon.jpg │ │ ├── oro.jpg │ │ ├── paloderosa.jpg │ │ ├── piel.jpg │ │ ├── plata.jpg │ │ ├── purpura.jpg │ │ ├── rojo.jpg │ │ ├── rojo1.jpg │ │ ├── rojo2.jpg │ │ ├── rojo3.jpg │ │ ├── rojo4.jpg │ │ ├── rosa.jpg │ │ ├── rosaclaro.jpg │ │ ├── rosado.jpg │ │ ├── rosado1.jpg │ │ ├── rosado2.jpg │ │ ├── rosadoclaro.jpg │ │ ├── rosapastel.jpg │ │ ├── surtido.jpg │ │ ├── surtido1.jpg │ │ ├── surtido2.jpg │ │ ├── surtido3.jpg │ │ ├── terracota.jpg │ │ ├── uva.jpg │ │ ├── verde.jpg │ │ ├── verde1.jpg │ │ ├── verde2.jpg │ │ ├── verde3.jpg │ │ ├── verdeclaro.jpg │ │ ├── verdeneon.jpg │ │ ├── verdeoscuro.jpg │ │ ├── vino.jpg │ │ ├── vino1.jpg │ │ ├── vino10.jpg │ │ └── vino2.jpg │ ├── contact-us │ │ ├── banner.jpg │ │ └── map.png │ ├── footer │ │ ├── facebook-icon.png │ │ ├── instagram-icon.png │ │ ├── twt-icon.png │ │ └── ws-icon.png │ └── posts │ │ ├── 01J93RKN0CXQHGJZST8EPSEJB8.jpg │ │ ├── 01J93RMWBBGM1620DW6EC31YEX.jpg │ │ └── thumb │ │ ├── 01J93RKN1964B7JJRR7KHCNHHZ.jpg │ │ └── 01J93RMWBG8H091RZSKN24R8YW.jpg ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js ├── products │ ├── colors.json │ ├── productWithImages.json │ └── productWithImages2.json ├── robots.txt ├── screenshot │ ├── img-1.png │ ├── img-2.png │ ├── img-3.png │ ├── img-4.png │ ├── img-5.png │ └── img-6.png └── vendor │ └── telescope │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── favicon.ico │ └── mix-manifest.json ├── resources ├── css │ ├── app.css │ └── filament │ │ └── admin │ │ ├── tailwind.config.js │ │ └── theme.css ├── js │ ├── Components │ │ ├── ApplicationLogo.jsx │ │ ├── Badge.jsx │ │ ├── Breadcrumb.jsx │ │ ├── Cards │ │ │ ├── CardProduct.jsx │ │ │ ├── CardProductPrice.jsx │ │ │ └── SimpleCard.jsx │ │ ├── Carousel │ │ │ ├── Banner.jsx │ │ │ ├── BannerText.jsx │ │ │ ├── BannerWithTitle.jsx │ │ │ ├── Carousel.jsx │ │ │ └── CarouselBanner.jsx │ │ ├── Checkbox.jsx │ │ ├── Context │ │ │ └── CheckoutProvider.jsx │ │ ├── DangerButton.jsx │ │ ├── Dropdown.jsx │ │ ├── Form │ │ │ ├── FormGrid.jsx │ │ │ ├── InputError.jsx │ │ │ ├── InputLabel.jsx │ │ │ ├── TextInput.jsx │ │ │ └── Textarea.jsx │ │ ├── Grids │ │ │ └── GridProduct.jsx │ │ ├── Hero │ │ │ └── Hero.jsx │ │ ├── MetaTag.jsx │ │ ├── Modal.jsx │ │ ├── NavLink.jsx │ │ ├── Notification │ │ │ ├── ContainerToast.jsx │ │ │ ├── ErrorToast.jsx │ │ │ ├── NotificationToast.jsx │ │ │ └── SuccessToast.jsx │ │ ├── OrderStatuBadges.jsx │ │ ├── Pagination.jsx │ │ ├── PrimaryButton.jsx │ │ ├── ProductPriceOffer.jsx │ │ ├── ResponsiveNavLink.jsx │ │ ├── SecondaryButton.jsx │ │ ├── Sections │ │ │ ├── SectionList.jsx │ │ │ └── SectionTitle.jsx │ │ ├── Spinner.jsx │ │ └── Table.jsx │ ├── Helpers │ │ └── helpers.js │ ├── Layouts │ │ ├── AuthenticatedLayout.jsx │ │ ├── Footer │ │ │ ├── Footer.jsx │ │ │ ├── SocilaMediaIcon.jsx │ │ │ ├── SubscribeNewsletter.jsx │ │ │ └── Suscribe.jsx │ │ ├── GuestLayout.jsx │ │ ├── Layout.jsx │ │ ├── LayoutBlog.jsx │ │ ├── LayoutProfile.jsx │ │ └── Navbar │ │ │ ├── DepartmentDropdown.jsx │ │ │ ├── DesktopNavbar.jsx │ │ │ ├── MovileNavbar │ │ │ ├── MobileMenuButton.jsx │ │ │ ├── MovileNavbar.jsx │ │ │ └── MovileProfileDropdown.jsx │ │ │ ├── Navbar.jsx │ │ │ └── ProfileDropdown.jsx │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.jsx │ │ │ ├── ForgotPassword.jsx │ │ │ ├── Login.jsx │ │ │ ├── Register.jsx │ │ │ ├── ResetPassword.jsx │ │ │ └── VerifyEmail.jsx │ │ ├── Blog │ │ │ ├── AuthorPost.jsx │ │ │ ├── Blog.jsx │ │ │ ├── CardPost.jsx │ │ │ └── Post.jsx │ │ ├── Checkout │ │ │ ├── CardProductSummary.jsx │ │ │ ├── Checkout.jsx │ │ │ ├── InputDiscount.jsx │ │ │ ├── OrderSummary.jsx │ │ │ ├── PaymentForm.jsx │ │ │ └── ShippingAddress.jsx │ │ ├── Contact │ │ │ ├── Contact.jsx │ │ │ ├── ContactAddress.jsx │ │ │ └── ContactForm.jsx │ │ ├── Department │ │ │ └── Department.jsx │ │ ├── ErrorPage.jsx │ │ ├── Home │ │ │ ├── CarouselSection.jsx │ │ │ ├── CarouselTop.jsx │ │ │ └── Home.jsx │ │ ├── Offers │ │ │ └── Offers.jsx │ │ ├── Order │ │ │ └── OrderComplete.jsx │ │ ├── Product │ │ │ ├── Attributes │ │ │ │ ├── AttributeValues.jsx │ │ │ │ └── Attributes.jsx │ │ │ ├── CarouselProduct.jsx │ │ │ ├── Description.jsx │ │ │ ├── Feacture.jsx │ │ │ ├── ImagesProduct.jsx │ │ │ ├── Product.jsx │ │ │ ├── Specifications.jsx │ │ │ ├── TitlePrice.jsx │ │ │ └── Variants │ │ │ │ ├── ButtonsProcessing.jsx │ │ │ │ ├── ColorVariants.jsx │ │ │ │ ├── SelectQuantity.jsx │ │ │ │ ├── SelectSkuSize.jsx │ │ │ │ └── VariantsProduct.jsx │ │ ├── Profile copy │ │ │ ├── Edit.jsx │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.jsx │ │ │ │ ├── UpdatePasswordForm.jsx │ │ │ │ └── UpdateProfileInformationForm.jsx │ │ ├── Profile │ │ │ ├── AccountDetails.jsx │ │ │ ├── ChangePassword.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── OrderDetails │ │ │ │ ├── BuyerDetails.jsx │ │ │ │ ├── OrderDetails.jsx │ │ │ │ ├── OrderItemsList.jsx │ │ │ │ └── OrderTotalPrice.jsx │ │ │ └── Orders.jsx │ │ ├── Search │ │ │ ├── BreadcrumbFilters.jsx │ │ │ ├── Filters │ │ │ │ ├── FilterButton.jsx │ │ │ │ ├── FilterCheckbox.jsx │ │ │ │ ├── FilterContainer.jsx │ │ │ │ ├── FilterList.jsx │ │ │ │ ├── FilterPrice.jsx │ │ │ │ ├── FilterRadio.jsx │ │ │ │ ├── Filters.jsx │ │ │ │ └── FiltersSelected.jsx │ │ │ └── Search.jsx │ │ ├── ShoppingCart │ │ │ ├── CartAttributes.jsx │ │ │ ├── CartProduct.jsx │ │ │ ├── OrderSummary.jsx │ │ │ └── ShoppingCart.jsx │ │ └── Welcome.jsx │ ├── app.jsx │ └── bootstrap.js └── views │ ├── app.blade.php │ ├── components │ └── descripction-list.blade.php │ ├── filament │ ├── infolists │ │ ├── sales-view.blade.php │ │ ├── stock-entry-product-list.blade.php │ │ └── stock-transfer-product-list.blade.php │ └── resources │ │ └── location-resource │ │ └── pages │ │ └── location-products.blade.php │ └── pdf │ └── invoice.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Enums/CartEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/CartEnum.php -------------------------------------------------------------------------------- /app/Enums/CategoryTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/CategoryTypeEnum.php -------------------------------------------------------------------------------- /app/Enums/DiscountCodeTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/DiscountCodeTypeEnum.php -------------------------------------------------------------------------------- /app/Enums/OrderStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/OrderStatusEnum.php -------------------------------------------------------------------------------- /app/Enums/PageTypeEnum.php: -------------------------------------------------------------------------------- 1 | enum -------------------------------------------------------------------------------- /app/Enums/PaymentMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/PaymentMethodEnum.php -------------------------------------------------------------------------------- /app/Enums/StockMovementOperationEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Enums/StockMovementOperationEnum.php -------------------------------------------------------------------------------- /app/Filament/Pages/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Pages/Dashboard.php -------------------------------------------------------------------------------- /app/Filament/Resources/AttributeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AttributeResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/AttributeResource/Pages/CreateAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AttributeResource/Pages/CreateAttribute.php -------------------------------------------------------------------------------- /app/Filament/Resources/AttributeResource/Pages/EditAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AttributeResource/Pages/EditAttribute.php -------------------------------------------------------------------------------- /app/Filament/Resources/AttributeResource/Pages/ListAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AttributeResource/Pages/ListAttributes.php -------------------------------------------------------------------------------- /app/Filament/Resources/AttributeResource/RelationManagers/AttributeOptionsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AttributeResource/RelationManagers/AttributeOptionsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/AuthorResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AuthorResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/AuthorResource/Pages/CreateAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AuthorResource/Pages/CreateAuthor.php -------------------------------------------------------------------------------- /app/Filament/Resources/AuthorResource/Pages/EditAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AuthorResource/Pages/EditAuthor.php -------------------------------------------------------------------------------- /app/Filament/Resources/AuthorResource/Pages/ListAuthors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/AuthorResource/Pages/ListAuthors.php -------------------------------------------------------------------------------- /app/Filament/Resources/BlogResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/BlogResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/BlogResource/Pages/CreateBlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/BlogResource/Pages/CreateBlog.php -------------------------------------------------------------------------------- /app/Filament/Resources/BlogResource/Pages/EditBlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/BlogResource/Pages/EditBlog.php -------------------------------------------------------------------------------- /app/Filament/Resources/BlogResource/Pages/ListBlogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/BlogResource/Pages/ListBlogs.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/CategoryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/CreateCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/EditCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/CategoryResource/Pages/EditCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/ListCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/CategoryResource/Pages/ListCategories.php -------------------------------------------------------------------------------- /app/Filament/Resources/ColorResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ColorResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ColorResource/Pages/CreateColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ColorResource/Pages/CreateColor.php -------------------------------------------------------------------------------- /app/Filament/Resources/ColorResource/Pages/EditColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ColorResource/Pages/EditColor.php -------------------------------------------------------------------------------- /app/Filament/Resources/ColorResource/Pages/ListColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ColorResource/Pages/ListColors.php -------------------------------------------------------------------------------- /app/Filament/Resources/DepartmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/DepartmentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/DepartmentResource/Pages/CreateDepartment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/DepartmentResource/Pages/CreateDepartment.php -------------------------------------------------------------------------------- /app/Filament/Resources/DepartmentResource/Pages/EditDepartment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/DepartmentResource/Pages/EditDepartment.php -------------------------------------------------------------------------------- /app/Filament/Resources/DepartmentResource/Pages/ListDepartments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/DepartmentResource/Pages/ListDepartments.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/CreateOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource/Pages/CreateOrder.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/EditOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource/Pages/EditOrder.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/ListOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource/Pages/ListOrders.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/ViewOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource/Pages/ViewOrder.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Widgets/OrderStatsOverview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/OrderResource/Widgets/OrderStatsOverview.php -------------------------------------------------------------------------------- /app/Filament/Resources/PageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/PageResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/PageResource/Pages/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/PageResource/Pages/CreatePage.php -------------------------------------------------------------------------------- /app/Filament/Resources/PageResource/Pages/EditPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/PageResource/Pages/EditPage.php -------------------------------------------------------------------------------- /app/Filament/Resources/PageResource/Pages/ListPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/PageResource/Pages/ListPages.php -------------------------------------------------------------------------------- /app/Filament/Resources/PageResource/RelationManagers/BannersRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/PageResource/RelationManagers/BannersRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/CreateProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/Pages/CreateProduct.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/EditProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/Pages/EditProduct.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/ListProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/Pages/ListProducts.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/ViewProductSpecifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/Pages/ViewProductSpecifications.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/ViewProductStock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/Pages/ViewProductStock.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/RelationManagers/ImagesRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/RelationManagers/ImagesRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/RelationManagers/OrderProductsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/RelationManagers/OrderProductsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/RelationManagers/SkusRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/RelationManagers/SkusRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/RelationManagers/SpecificationsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/ProductResource/RelationManagers/SpecificationsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/SizeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/SizeResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/SizeResource/Pages/CreateSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/SizeResource/Pages/CreateSize.php -------------------------------------------------------------------------------- /app/Filament/Resources/SizeResource/Pages/EditSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/SizeResource/Pages/EditSize.php -------------------------------------------------------------------------------- /app/Filament/Resources/SizeResource/Pages/ListSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/SizeResource/Pages/ListSizes.php -------------------------------------------------------------------------------- /app/Filament/Resources/StockAdjustmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/StockAdjustmentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/StockAdjustmentResource/Pages/CreateStockAdjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/StockAdjustmentResource/Pages/CreateStockAdjustment.php -------------------------------------------------------------------------------- /app/Filament/Resources/StockAdjustmentResource/Pages/EditStockAdjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/StockAdjustmentResource/Pages/EditStockAdjustment.php -------------------------------------------------------------------------------- /app/Filament/Resources/StockAdjustmentResource/Pages/ListStockAdjustments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/StockAdjustmentResource/Pages/ListStockAdjustments.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/CreateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource/Pages/CreateUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ViewUserOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource/Pages/ViewUserOrders.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/RelationManagers/OrdersRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Resources/UserResource/RelationManagers/OrdersRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Widgets/CategorySalesChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Widgets/CategorySalesChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/LatestSalesWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Widgets/LatestSalesWidget.php -------------------------------------------------------------------------------- /app/Filament/Widgets/SalesChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Widgets/SalesChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/StatsOverview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Filament/Widgets/StatsOverview.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/BlogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Checkout/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Checkout/CheckoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Checkout/DiscountCheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Checkout/DiscountCheckoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Checkout/PaymentCheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Checkout/PaymentCheckoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DepartmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/DepartmentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NewsletterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/NewsletterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Profile/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Profile/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Profile/ProfileOrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/Profile/ProfileOrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/SearchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ShoppingCartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Controllers/ShoppingCartController.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/ProductInSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Middleware/ProductInSession.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CheckoutProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Requests/CheckoutProductRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DiscountCodeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Requests/DiscountCodeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/OrderUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Requests/OrderUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/AttributeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/AttributeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/AttributeValueResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/AttributeValueResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CartResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/CartResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/CategoryResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ColorResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/ColorResource.php -------------------------------------------------------------------------------- /app/Http/Resources/DepartmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/DepartmentResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ImageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/ImageResource.php -------------------------------------------------------------------------------- /app/Http/Resources/MetaTagResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/MetaTagResource.php -------------------------------------------------------------------------------- /app/Http/Resources/OrderAttributeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/OrderAttributeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/OrderProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/OrderProductResource.php -------------------------------------------------------------------------------- /app/Http/Resources/OrderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/OrderResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/PageResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PaymentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/PaymentResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/PostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ProductCardResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/ProductCardResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/ProductResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Search/AttributeFilterResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/Search/AttributeFilterResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Search/AttributeValueFilterResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/Search/AttributeValueFilterResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Search/CategoryFilterResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/Search/CategoryFilterResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Search/SearchResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/Search/SearchResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SizeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/SizeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SkuResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/SkuResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Http/Resources/VariantProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/VariantProductResource.php -------------------------------------------------------------------------------- /app/Http/Resources/VariantResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/VariantResource.php -------------------------------------------------------------------------------- /app/Http/Resources/VariantSizeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Http/Resources/VariantSizeResource.php -------------------------------------------------------------------------------- /app/Models/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Attribute.php -------------------------------------------------------------------------------- /app/Models/AttributeOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/AttributeOption.php -------------------------------------------------------------------------------- /app/Models/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Author.php -------------------------------------------------------------------------------- /app/Models/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Blog.php -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Brand.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Color.php -------------------------------------------------------------------------------- /app/Models/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Department.php -------------------------------------------------------------------------------- /app/Models/DiscountCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/DiscountCode.php -------------------------------------------------------------------------------- /app/Models/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Image.php -------------------------------------------------------------------------------- /app/Models/MetaTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/MetaTag.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/OrderProduct.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Payment.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Size.php -------------------------------------------------------------------------------- /app/Models/Sku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Sku.php -------------------------------------------------------------------------------- /app/Models/Specification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Specification.php -------------------------------------------------------------------------------- /app/Models/SpecificationValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/SpecificationValue.php -------------------------------------------------------------------------------- /app/Models/StockAdjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/StockAdjustment.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Variant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Models/Variant.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/TelescopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Providers/TelescopeServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/ShoppingCartStoreRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Rules/ShoppingCartStoreRule.php -------------------------------------------------------------------------------- /app/Rules/ValidateProductRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Rules/ValidateProductRule.php -------------------------------------------------------------------------------- /app/Services/CartService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/CartService.php -------------------------------------------------------------------------------- /app/Services/CheckoutService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/CheckoutService.php -------------------------------------------------------------------------------- /app/Services/DiscountCodeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/DiscountCodeService.php -------------------------------------------------------------------------------- /app/Services/InvoiceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/InvoiceService.php -------------------------------------------------------------------------------- /app/Services/OrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/OrderService.php -------------------------------------------------------------------------------- /app/Services/PaymentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/PaymentService.php -------------------------------------------------------------------------------- /app/Services/ProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/ProductService.php -------------------------------------------------------------------------------- /app/Services/SearchProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/SearchProductService.php -------------------------------------------------------------------------------- /app/Services/SettingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/SettingService.php -------------------------------------------------------------------------------- /app/Services/StockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/app/Services/StockService.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/settings.json -------------------------------------------------------------------------------- /config/shopping-cart.php: -------------------------------------------------------------------------------- 1 | env('SHOPPING_CART_MAX_QUANTITY', 10) 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/config/telescope.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/AttributeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/AttributeFactory.php -------------------------------------------------------------------------------- /database/factories/AttributeOptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/AttributeOptionFactory.php -------------------------------------------------------------------------------- /database/factories/AuthorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/AuthorFactory.php -------------------------------------------------------------------------------- /database/factories/BlogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/BlogFactory.php -------------------------------------------------------------------------------- /database/factories/BrandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/BrandFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/DepartmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/DepartmentFactory.php -------------------------------------------------------------------------------- /database/factories/DiscountCodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/DiscountCodeFactory.php -------------------------------------------------------------------------------- /database/factories/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/ImageFactory.php -------------------------------------------------------------------------------- /database/factories/MetaTagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/MetaTagFactory.php -------------------------------------------------------------------------------- /database/factories/PageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/PageFactory.php -------------------------------------------------------------------------------- /database/factories/PaymentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/PaymentFactory.php -------------------------------------------------------------------------------- /database/factories/SpecificationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/SpecificationFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_23_044847_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_09_23_044847_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_23_052425_create_brands_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_09_23_052425_create_brands_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_23_055657_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_09_23_055657_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_26_160326_create_specifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_09_26_160326_create_specifications_table.php -------------------------------------------------------------------------------- /database/migrations/2021_10_07_072014_create_images_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_10_07_072014_create_images_table.php -------------------------------------------------------------------------------- /database/migrations/2021_10_12_081302_create_cart_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2021_10_12_081302_create_cart_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_24_134100_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2022_06_24_134100_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2023_04_13_022750_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_04_13_022750_create_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2023_04_26_063402_create_blog_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_04_26_063402_create_blog_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_17_040923_create_payments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_05_17_040923_create_payments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_18_033747_create_discount_codes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_05_18_033747_create_discount_codes_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_28_031008_create_departments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_06_28_031008_create_departments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_03_081325_create_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2023_07_03_081325_create_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_07_193650_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_08_07_193650_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2024_08_13_060952_create_telescope_entries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_08_13_060952_create_telescope_entries_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_18_015820_create_sizes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_08_18_015820_create_sizes_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_18_015838_create_colors_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_08_18_015838_create_colors_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_07_054451_create_meta_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_09_07_054451_create_meta_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_19_004917_create_stock_adjustments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/migrations/2024_09_19_004917_create_stock_adjustments_table.php -------------------------------------------------------------------------------- /database/seeders/AttributeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/AttributeSeeder.php -------------------------------------------------------------------------------- /database/seeders/BlogSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/BlogSeeder.php -------------------------------------------------------------------------------- /database/seeders/BrandSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/BrandSeeder.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/ColorSizeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/ColorSizeSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DiscountCodeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/DiscountCodeSeeder.php -------------------------------------------------------------------------------- /database/seeders/MetaTagSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/MetaTagSeeder.php -------------------------------------------------------------------------------- /database/seeders/OrderSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/OrderSeeder.php -------------------------------------------------------------------------------- /database/seeders/PageSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/PageSeeder.php -------------------------------------------------------------------------------- /database/seeders/PresentationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/PresentationSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProductSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/ProductSeeder.php -------------------------------------------------------------------------------- /database/seeders/SkuSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/SkuSeeder.php -------------------------------------------------------------------------------- /database/seeders/SpecificationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/SpecificationSeeder.php -------------------------------------------------------------------------------- /database/seeders/StockAdjustmentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/StockAdjustmentSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/seeders/VariantSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/database/seeders/VariantSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/es/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/es/auth.php -------------------------------------------------------------------------------- /lang/es/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/es/pagination.php -------------------------------------------------------------------------------- /lang/es/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/es/passwords.php -------------------------------------------------------------------------------- /lang/es/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/lang/es/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/authors/author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-1.jpg -------------------------------------------------------------------------------- /public/img/authors/author-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-10.jpg -------------------------------------------------------------------------------- /public/img/authors/author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-2.jpg -------------------------------------------------------------------------------- /public/img/authors/author-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-3.jpg -------------------------------------------------------------------------------- /public/img/authors/author-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-4.jpg -------------------------------------------------------------------------------- /public/img/authors/author-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-5.jpg -------------------------------------------------------------------------------- /public/img/authors/author-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-6.jpg -------------------------------------------------------------------------------- /public/img/authors/author-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-7.jpg -------------------------------------------------------------------------------- /public/img/authors/author-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-8.jpg -------------------------------------------------------------------------------- /public/img/authors/author-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/authors/author-9.jpg -------------------------------------------------------------------------------- /public/img/banners/Ropa-de-moda-patprimo-desktop-home-2-jul-23-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/Ropa-de-moda-patprimo-desktop-home-2-jul-23-4.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-blog.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-carousel-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-carousel-1.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-carousel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-carousel-2.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-carousel-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-carousel-3.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-home-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-home-10.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-home-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-home-9.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-section-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-section-1.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-section-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-section-2.jpg -------------------------------------------------------------------------------- /public/img/banners/banner-sidebar-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/banners/banner-sidebar-search.jpg -------------------------------------------------------------------------------- /public/img/blog/banner-blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/banner-blog.jpg -------------------------------------------------------------------------------- /public/img/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-1.jpg -------------------------------------------------------------------------------- /public/img/blog/post-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-10.jpg -------------------------------------------------------------------------------- /public/img/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-2.jpg -------------------------------------------------------------------------------- /public/img/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-3.jpg -------------------------------------------------------------------------------- /public/img/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-4.jpg -------------------------------------------------------------------------------- /public/img/blog/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-5.jpg -------------------------------------------------------------------------------- /public/img/blog/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-6.jpg -------------------------------------------------------------------------------- /public/img/blog/post-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-7.jpg -------------------------------------------------------------------------------- /public/img/blog/post-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-8.jpg -------------------------------------------------------------------------------- /public/img/blog/post-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/blog/post-9.jpg -------------------------------------------------------------------------------- /public/img/categories/abrigos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/abrigos.png -------------------------------------------------------------------------------- /public/img/categories/accesorios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/accesorios.png -------------------------------------------------------------------------------- /public/img/categories/bermudas-y-pantalonetas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/bermudas-y-pantalonetas.png -------------------------------------------------------------------------------- /public/img/categories/bermudas-y-shorts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/bermudas-y-shorts.png -------------------------------------------------------------------------------- /public/img/categories/bermudas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/bermudas.png -------------------------------------------------------------------------------- /public/img/categories/blazers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/blazers.png -------------------------------------------------------------------------------- /public/img/categories/blusas-y-camisas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/blusas-y-camisas.png -------------------------------------------------------------------------------- /public/img/categories/blusas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/blusas.png -------------------------------------------------------------------------------- /public/img/categories/buzos-y-chaquetas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/buzos-y-chaquetas.png -------------------------------------------------------------------------------- /public/img/categories/calzado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/calzado.png -------------------------------------------------------------------------------- /public/img/categories/camisas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/camisas.png -------------------------------------------------------------------------------- /public/img/categories/camisetas-interior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/camisetas-interior.png -------------------------------------------------------------------------------- /public/img/categories/camisetas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/camisetas.png -------------------------------------------------------------------------------- /public/img/categories/chaquetas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/chaquetas.png -------------------------------------------------------------------------------- /public/img/categories/cuidado-personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/cuidado-personal.png -------------------------------------------------------------------------------- /public/img/categories/descanso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/descanso.png -------------------------------------------------------------------------------- /public/img/categories/enterizos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/enterizos.png -------------------------------------------------------------------------------- /public/img/categories/faldas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/faldas.png -------------------------------------------------------------------------------- /public/img/categories/guayaberas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/guayaberas.png -------------------------------------------------------------------------------- /public/img/categories/jeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/jeans.png -------------------------------------------------------------------------------- /public/img/categories/leggins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/leggins.png -------------------------------------------------------------------------------- /public/img/categories/pantalones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/pantalones.png -------------------------------------------------------------------------------- /public/img/categories/pijama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/pijama.png -------------------------------------------------------------------------------- /public/img/categories/polos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/polos.png -------------------------------------------------------------------------------- /public/img/categories/ropa-deportiva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/ropa-deportiva.png -------------------------------------------------------------------------------- /public/img/categories/ropa-interior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/ropa-interior.png -------------------------------------------------------------------------------- /public/img/categories/sacos-y-busos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/sacos-y-busos.png -------------------------------------------------------------------------------- /public/img/categories/shorts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/shorts.png -------------------------------------------------------------------------------- /public/img/categories/vestidos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/vestidos.png -------------------------------------------------------------------------------- /public/img/categories/zapatos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/categories/zapatos.png -------------------------------------------------------------------------------- /public/img/colors/.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/.jpg -------------------------------------------------------------------------------- /public/img/colors/aguamarina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/aguamarina.jpg -------------------------------------------------------------------------------- /public/img/colors/amarillo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/amarillo.jpg -------------------------------------------------------------------------------- /public/img/colors/amarillo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/amarillo1.jpg -------------------------------------------------------------------------------- /public/img/colors/amarillopastel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/amarillopastel.jpg -------------------------------------------------------------------------------- /public/img/colors/avena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/avena.jpg -------------------------------------------------------------------------------- /public/img/colors/azul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul.jpg -------------------------------------------------------------------------------- /public/img/colors/azul1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul1.jpg -------------------------------------------------------------------------------- /public/img/colors/azul10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul10.jpg -------------------------------------------------------------------------------- /public/img/colors/azul2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul2.jpg -------------------------------------------------------------------------------- /public/img/colors/azul3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul3.jpg -------------------------------------------------------------------------------- /public/img/colors/azul4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul4.jpg -------------------------------------------------------------------------------- /public/img/colors/azul5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul5.jpg -------------------------------------------------------------------------------- /public/img/colors/azul6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul6.jpg -------------------------------------------------------------------------------- /public/img/colors/azul7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul7.jpg -------------------------------------------------------------------------------- /public/img/colors/azul8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azul8.jpg -------------------------------------------------------------------------------- /public/img/colors/azulclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azulclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/azulmedio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azulmedio.jpg -------------------------------------------------------------------------------- /public/img/colors/azuloscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azuloscuro.jpg -------------------------------------------------------------------------------- /public/img/colors/azulpastel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azulpastel.jpg -------------------------------------------------------------------------------- /public/img/colors/azulrey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/azulrey.jpg -------------------------------------------------------------------------------- /public/img/colors/beige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/beige.jpg -------------------------------------------------------------------------------- /public/img/colors/beige1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/beige1.jpg -------------------------------------------------------------------------------- /public/img/colors/blanco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/blanco.jpg -------------------------------------------------------------------------------- /public/img/colors/blanco1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/blanco1.jpg -------------------------------------------------------------------------------- /public/img/colors/blanco2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/blanco2.jpg -------------------------------------------------------------------------------- /public/img/colors/blanco3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/blanco3.jpg -------------------------------------------------------------------------------- /public/img/colors/cafe-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cafe-1.jpg -------------------------------------------------------------------------------- /public/img/colors/cafe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cafe.jpg -------------------------------------------------------------------------------- /public/img/colors/cafe1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cafe1.jpg -------------------------------------------------------------------------------- /public/img/colors/cafeclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cafeclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/cafeoscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cafeoscuro.jpg -------------------------------------------------------------------------------- /public/img/colors/camel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/camel.jpg -------------------------------------------------------------------------------- /public/img/colors/celeste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/celeste.jpg -------------------------------------------------------------------------------- /public/img/colors/cereza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/cereza.jpg -------------------------------------------------------------------------------- /public/img/colors/coral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/coral.jpg -------------------------------------------------------------------------------- /public/img/colors/crema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/crema.jpg -------------------------------------------------------------------------------- /public/img/colors/crudo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/crudo.jpg -------------------------------------------------------------------------------- /public/img/colors/curuba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/curuba.jpg -------------------------------------------------------------------------------- /public/img/colors/dorado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/dorado.jpg -------------------------------------------------------------------------------- /public/img/colors/fucsia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/fucsia.jpg -------------------------------------------------------------------------------- /public/img/colors/gris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris.jpg -------------------------------------------------------------------------------- /public/img/colors/gris1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris1.jpg -------------------------------------------------------------------------------- /public/img/colors/gris10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris10.jpg -------------------------------------------------------------------------------- /public/img/colors/gris2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris2.jpg -------------------------------------------------------------------------------- /public/img/colors/gris4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris4.jpg -------------------------------------------------------------------------------- /public/img/colors/gris5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris5.jpg -------------------------------------------------------------------------------- /public/img/colors/gris7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris7.jpg -------------------------------------------------------------------------------- /public/img/colors/gris8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris8.jpg -------------------------------------------------------------------------------- /public/img/colors/gris9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/gris9.jpg -------------------------------------------------------------------------------- /public/img/colors/grisclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/grisclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/grisjaspe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/grisjaspe.jpg -------------------------------------------------------------------------------- /public/img/colors/grisoscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/grisoscuro.jpg -------------------------------------------------------------------------------- /public/img/colors/hueso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/hueso.jpg -------------------------------------------------------------------------------- /public/img/colors/indigo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/indigo.jpg -------------------------------------------------------------------------------- /public/img/colors/lila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/lila.jpg -------------------------------------------------------------------------------- /public/img/colors/mandarina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/mandarina.jpg -------------------------------------------------------------------------------- /public/img/colors/marfil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/marfil.jpg -------------------------------------------------------------------------------- /public/img/colors/menta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/menta.jpg -------------------------------------------------------------------------------- /public/img/colors/morado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/morado.jpg -------------------------------------------------------------------------------- /public/img/colors/mostaza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/mostaza.jpg -------------------------------------------------------------------------------- /public/img/colors/naranja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/naranja.jpg -------------------------------------------------------------------------------- /public/img/colors/negro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro.jpg -------------------------------------------------------------------------------- /public/img/colors/negro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro1.jpg -------------------------------------------------------------------------------- /public/img/colors/negro2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro2.jpg -------------------------------------------------------------------------------- /public/img/colors/negro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro3.jpg -------------------------------------------------------------------------------- /public/img/colors/negro5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro5.jpg -------------------------------------------------------------------------------- /public/img/colors/negro6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro6.jpg -------------------------------------------------------------------------------- /public/img/colors/negro7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro7.jpg -------------------------------------------------------------------------------- /public/img/colors/negro8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro8.jpg -------------------------------------------------------------------------------- /public/img/colors/negro9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negro9.jpg -------------------------------------------------------------------------------- /public/img/colors/negrobinado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negrobinado.jpg -------------------------------------------------------------------------------- /public/img/colors/negrocarbon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/negrocarbon.jpg -------------------------------------------------------------------------------- /public/img/colors/oro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/oro.jpg -------------------------------------------------------------------------------- /public/img/colors/paloderosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/paloderosa.jpg -------------------------------------------------------------------------------- /public/img/colors/piel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/piel.jpg -------------------------------------------------------------------------------- /public/img/colors/plata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/plata.jpg -------------------------------------------------------------------------------- /public/img/colors/purpura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/purpura.jpg -------------------------------------------------------------------------------- /public/img/colors/rojo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rojo.jpg -------------------------------------------------------------------------------- /public/img/colors/rojo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rojo1.jpg -------------------------------------------------------------------------------- /public/img/colors/rojo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rojo2.jpg -------------------------------------------------------------------------------- /public/img/colors/rojo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rojo3.jpg -------------------------------------------------------------------------------- /public/img/colors/rojo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rojo4.jpg -------------------------------------------------------------------------------- /public/img/colors/rosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosa.jpg -------------------------------------------------------------------------------- /public/img/colors/rosaclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosaclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/rosado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosado.jpg -------------------------------------------------------------------------------- /public/img/colors/rosado1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosado1.jpg -------------------------------------------------------------------------------- /public/img/colors/rosado2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosado2.jpg -------------------------------------------------------------------------------- /public/img/colors/rosadoclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosadoclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/rosapastel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/rosapastel.jpg -------------------------------------------------------------------------------- /public/img/colors/surtido.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/surtido.jpg -------------------------------------------------------------------------------- /public/img/colors/surtido1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/surtido1.jpg -------------------------------------------------------------------------------- /public/img/colors/surtido2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/surtido2.jpg -------------------------------------------------------------------------------- /public/img/colors/surtido3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/surtido3.jpg -------------------------------------------------------------------------------- /public/img/colors/terracota.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/terracota.jpg -------------------------------------------------------------------------------- /public/img/colors/uva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/uva.jpg -------------------------------------------------------------------------------- /public/img/colors/verde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verde.jpg -------------------------------------------------------------------------------- /public/img/colors/verde1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verde1.jpg -------------------------------------------------------------------------------- /public/img/colors/verde2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verde2.jpg -------------------------------------------------------------------------------- /public/img/colors/verde3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verde3.jpg -------------------------------------------------------------------------------- /public/img/colors/verdeclaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verdeclaro.jpg -------------------------------------------------------------------------------- /public/img/colors/verdeneon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verdeneon.jpg -------------------------------------------------------------------------------- /public/img/colors/verdeoscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/verdeoscuro.jpg -------------------------------------------------------------------------------- /public/img/colors/vino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/vino.jpg -------------------------------------------------------------------------------- /public/img/colors/vino1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/vino1.jpg -------------------------------------------------------------------------------- /public/img/colors/vino10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/vino10.jpg -------------------------------------------------------------------------------- /public/img/colors/vino2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/colors/vino2.jpg -------------------------------------------------------------------------------- /public/img/contact-us/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/contact-us/banner.jpg -------------------------------------------------------------------------------- /public/img/contact-us/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/contact-us/map.png -------------------------------------------------------------------------------- /public/img/footer/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/footer/facebook-icon.png -------------------------------------------------------------------------------- /public/img/footer/instagram-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/footer/instagram-icon.png -------------------------------------------------------------------------------- /public/img/footer/twt-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/footer/twt-icon.png -------------------------------------------------------------------------------- /public/img/footer/ws-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/footer/ws-icon.png -------------------------------------------------------------------------------- /public/img/posts/01J93RKN0CXQHGJZST8EPSEJB8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/posts/01J93RKN0CXQHGJZST8EPSEJB8.jpg -------------------------------------------------------------------------------- /public/img/posts/01J93RMWBBGM1620DW6EC31YEX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/posts/01J93RMWBBGM1620DW6EC31YEX.jpg -------------------------------------------------------------------------------- /public/img/posts/thumb/01J93RKN1964B7JJRR7KHCNHHZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/posts/thumb/01J93RKN1964B7JJRR7KHCNHHZ.jpg -------------------------------------------------------------------------------- /public/img/posts/thumb/01J93RMWBG8H091RZSKN24R8YW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/img/posts/thumb/01J93RMWBG8H091RZSKN24R8YW.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/products/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/products/colors.json -------------------------------------------------------------------------------- /public/products/productWithImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/products/productWithImages.json -------------------------------------------------------------------------------- /public/products/productWithImages2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/products/productWithImages2.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/screenshot/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-1.png -------------------------------------------------------------------------------- /public/screenshot/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-2.png -------------------------------------------------------------------------------- /public/screenshot/img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-3.png -------------------------------------------------------------------------------- /public/screenshot/img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-4.png -------------------------------------------------------------------------------- /public/screenshot/img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-5.png -------------------------------------------------------------------------------- /public/screenshot/img-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/screenshot/img-6.png -------------------------------------------------------------------------------- /public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/filament/admin/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/css/filament/admin/tailwind.config.js -------------------------------------------------------------------------------- /resources/css/filament/admin/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/css/filament/admin/theme.css -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/ApplicationLogo.jsx -------------------------------------------------------------------------------- /resources/js/Components/Badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Badge.jsx -------------------------------------------------------------------------------- /resources/js/Components/Breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Breadcrumb.jsx -------------------------------------------------------------------------------- /resources/js/Components/Cards/CardProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Cards/CardProduct.jsx -------------------------------------------------------------------------------- /resources/js/Components/Cards/CardProductPrice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Cards/CardProductPrice.jsx -------------------------------------------------------------------------------- /resources/js/Components/Cards/SimpleCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Cards/SimpleCard.jsx -------------------------------------------------------------------------------- /resources/js/Components/Carousel/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Carousel/Banner.jsx -------------------------------------------------------------------------------- /resources/js/Components/Carousel/BannerText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Carousel/BannerText.jsx -------------------------------------------------------------------------------- /resources/js/Components/Carousel/BannerWithTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Carousel/BannerWithTitle.jsx -------------------------------------------------------------------------------- /resources/js/Components/Carousel/Carousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Carousel/Carousel.jsx -------------------------------------------------------------------------------- /resources/js/Components/Carousel/CarouselBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Carousel/CarouselBanner.jsx -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Checkbox.jsx -------------------------------------------------------------------------------- /resources/js/Components/Context/CheckoutProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Context/CheckoutProvider.jsx -------------------------------------------------------------------------------- /resources/js/Components/DangerButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/DangerButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Dropdown.jsx -------------------------------------------------------------------------------- /resources/js/Components/Form/FormGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Form/FormGrid.jsx -------------------------------------------------------------------------------- /resources/js/Components/Form/InputError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Form/InputError.jsx -------------------------------------------------------------------------------- /resources/js/Components/Form/InputLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Form/InputLabel.jsx -------------------------------------------------------------------------------- /resources/js/Components/Form/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Form/TextInput.jsx -------------------------------------------------------------------------------- /resources/js/Components/Form/Textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Form/Textarea.jsx -------------------------------------------------------------------------------- /resources/js/Components/Grids/GridProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Grids/GridProduct.jsx -------------------------------------------------------------------------------- /resources/js/Components/Hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Hero/Hero.jsx -------------------------------------------------------------------------------- /resources/js/Components/MetaTag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/MetaTag.jsx -------------------------------------------------------------------------------- /resources/js/Components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Modal.jsx -------------------------------------------------------------------------------- /resources/js/Components/NavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/NavLink.jsx -------------------------------------------------------------------------------- /resources/js/Components/Notification/ContainerToast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Notification/ContainerToast.jsx -------------------------------------------------------------------------------- /resources/js/Components/Notification/ErrorToast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Notification/ErrorToast.jsx -------------------------------------------------------------------------------- /resources/js/Components/Notification/NotificationToast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Notification/NotificationToast.jsx -------------------------------------------------------------------------------- /resources/js/Components/Notification/SuccessToast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Notification/SuccessToast.jsx -------------------------------------------------------------------------------- /resources/js/Components/OrderStatuBadges.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/OrderStatuBadges.jsx -------------------------------------------------------------------------------- /resources/js/Components/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Pagination.jsx -------------------------------------------------------------------------------- /resources/js/Components/PrimaryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/PrimaryButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/ProductPriceOffer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/ProductPriceOffer.jsx -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/ResponsiveNavLink.jsx -------------------------------------------------------------------------------- /resources/js/Components/SecondaryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/SecondaryButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/Sections/SectionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Sections/SectionList.jsx -------------------------------------------------------------------------------- /resources/js/Components/Sections/SectionTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Sections/SectionTitle.jsx -------------------------------------------------------------------------------- /resources/js/Components/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Spinner.jsx -------------------------------------------------------------------------------- /resources/js/Components/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Components/Table.jsx -------------------------------------------------------------------------------- /resources/js/Helpers/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Helpers/helpers.js -------------------------------------------------------------------------------- /resources/js/Layouts/AuthenticatedLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/AuthenticatedLayout.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Footer/Footer.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Footer/SocilaMediaIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Footer/SocilaMediaIcon.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Footer/SubscribeNewsletter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Footer/SubscribeNewsletter.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Footer/Suscribe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Footer/Suscribe.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/GuestLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/GuestLayout.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Layout.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/LayoutBlog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/LayoutBlog.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/LayoutProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/LayoutProfile.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/DepartmentDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/DepartmentDropdown.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/DesktopNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/DesktopNavbar.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/MovileNavbar/MobileMenuButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/MovileNavbar/MobileMenuButton.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/MovileNavbar/MovileNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/MovileNavbar/MovileNavbar.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/MovileNavbar/MovileProfileDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/MovileNavbar/MovileProfileDropdown.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/Navbar/ProfileDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Layouts/Navbar/ProfileDropdown.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/ConfirmPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/ForgotPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/Login.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/Register.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/ResetPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Auth/VerifyEmail.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Blog/AuthorPost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Blog/AuthorPost.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Blog/Blog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Blog/Blog.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Blog/CardPost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Blog/CardPost.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Blog/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Blog/Post.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/CardProductSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/CardProductSummary.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/Checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/Checkout.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/InputDiscount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/InputDiscount.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/OrderSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/OrderSummary.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/PaymentForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/PaymentForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Checkout/ShippingAddress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Checkout/ShippingAddress.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Contact/Contact.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contact/ContactAddress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Contact/ContactAddress.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contact/ContactForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Contact/ContactForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Department/Department.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Department/Department.jsx -------------------------------------------------------------------------------- /resources/js/Pages/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/ErrorPage.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Home/CarouselSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Home/CarouselSection.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Home/CarouselTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Home/CarouselTop.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Home/Home.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Offers/Offers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Offers/Offers.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Order/OrderComplete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Order/OrderComplete.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Attributes/AttributeValues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Attributes/AttributeValues.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Attributes/Attributes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Attributes/Attributes.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/CarouselProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/CarouselProduct.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Description.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Feacture.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Feacture.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/ImagesProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/ImagesProduct.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Product.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Specifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Specifications.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/TitlePrice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/TitlePrice.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Variants/ButtonsProcessing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Variants/ButtonsProcessing.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Variants/ColorVariants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Variants/ColorVariants.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Variants/SelectQuantity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Variants/SelectQuantity.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Variants/SelectSkuSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Variants/SelectSkuSize.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Product/Variants/VariantsProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Product/Variants/VariantsProduct.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile copy/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile copy/Edit.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile copy/Partials/DeleteUserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile copy/Partials/DeleteUserForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile copy/Partials/UpdatePasswordForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile copy/Partials/UpdatePasswordForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile copy/Partials/UpdateProfileInformationForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile copy/Partials/UpdateProfileInformationForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/AccountDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/AccountDetails.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/ChangePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/ChangePassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/Dashboard.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/OrderDetails/BuyerDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/OrderDetails/BuyerDetails.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/OrderDetails/OrderDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/OrderDetails/OrderDetails.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/OrderDetails/OrderItemsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/OrderDetails/OrderItemsList.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/OrderDetails/OrderTotalPrice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/OrderDetails/OrderTotalPrice.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Orders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Profile/Orders.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/BreadcrumbFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/BreadcrumbFilters.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterButton.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterCheckbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterCheckbox.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterContainer.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterList.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterPrice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterPrice.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FilterRadio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FilterRadio.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/Filters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/Filters.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Filters/FiltersSelected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Filters/FiltersSelected.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Search/Search.jsx -------------------------------------------------------------------------------- /resources/js/Pages/ShoppingCart/CartAttributes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/ShoppingCart/CartAttributes.jsx -------------------------------------------------------------------------------- /resources/js/Pages/ShoppingCart/CartProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/ShoppingCart/CartProduct.jsx -------------------------------------------------------------------------------- /resources/js/Pages/ShoppingCart/OrderSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/ShoppingCart/OrderSummary.jsx -------------------------------------------------------------------------------- /resources/js/Pages/ShoppingCart/ShoppingCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/ShoppingCart/ShoppingCart.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/Pages/Welcome.jsx -------------------------------------------------------------------------------- /resources/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/app.jsx -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/descripction-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/components/descripction-list.blade.php -------------------------------------------------------------------------------- /resources/views/filament/infolists/sales-view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/filament/infolists/sales-view.blade.php -------------------------------------------------------------------------------- /resources/views/filament/infolists/stock-entry-product-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/filament/infolists/stock-entry-product-list.blade.php -------------------------------------------------------------------------------- /resources/views/filament/infolists/stock-transfer-product-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/filament/infolists/stock-transfer-product-list.blade.php -------------------------------------------------------------------------------- /resources/views/filament/resources/location-resource/pages/location-products.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/filament/resources/location-resource/pages/location-products.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/resources/views/pdf/invoice.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abel291/ecommerce-react-vite-laravel/HEAD/vite.config.js --------------------------------------------------------------------------------