├── .editorconfig ├── .env ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── .vscode └── settings.json ├── app ├── Admin.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── Category │ │ │ │ ├── BrandController.php │ │ │ │ ├── CategoryController.php │ │ │ │ └── SubcategoryController.php │ │ │ ├── CouponController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── OrderController.php │ │ │ ├── PostController.php │ │ │ ├── ProductController.php │ │ │ ├── RegisterController.php │ │ │ ├── ReportController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── ReturnController.php │ │ │ ├── SettingController.php │ │ │ └── VerificationController.php │ │ ├── AdminController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BlogController.php │ │ ├── CartController.php │ │ ├── Controller.php │ │ ├── FrontController.php │ │ ├── HomeController.php │ │ ├── PaymentController.php │ │ ├── ProductController.php │ │ ├── SocialController.php │ │ └── WishlistController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Mail │ └── invoiceMail.php ├── Model │ └── Admin │ │ ├── Brand.php │ │ ├── Category.php │ │ ├── Coupon.php │ │ ├── Newslater.php │ │ ├── Post.php │ │ ├── Postcategory.php │ │ ├── Product.php │ │ ├── Subcategory.php │ │ └── Wishlist.php ├── Notifications │ └── AdminResetPasswordNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cart.php ├── database.php ├── filesystems.php ├── hashing.php ├── image.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_11_06_075920_create_admins_table.php │ ├── 2020_02_22_194920_create_categories_table.php │ ├── 2020_02_22_195135_create_subcategories_table.php │ ├── 2020_02_24_195753_create_brands_table.php │ ├── 2020_02_25_160219_create_coupons_table.php │ ├── 2020_02_25_203447_create_newsletters_table.php │ ├── 2020_02_26_111148_create_products_table.php │ ├── 2020_02_28_144335_create_post_category_table.php │ ├── 2020_02_28_144352_create_posts_table.php │ ├── 2020_03_05_182725_create_wishlists_table.php │ ├── 2020_03_10_213028_create_settings_table.php │ ├── 2020_03_13_181939_create_orders_table.php │ ├── 2020_03_13_182052_create_order_details_table.php │ ├── 2020_03_13_182122_create_shipping_table.php │ ├── 2020_03_17_160511_create_subscribers_table.php │ ├── 2020_03_17_161233_create_seo_table.php │ └── 2020_03_23_143810_create_sitesetting_table.php └── seeds │ └── DatabaseSeeder.php ├── ecommerce.sql ├── favicon.ico ├── index.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── avatar.jpg ├── backend │ ├── css │ │ ├── bootstrap-tagsinput.css │ │ ├── bracket.css │ │ ├── bracket.min.css │ │ ├── starlight.css │ │ ├── starlight.min.css │ │ └── toastr.min.css │ ├── img │ │ ├── img1.jpg │ │ ├── img10.jpg │ │ ├── img11.jpg │ │ ├── img12.jpg │ │ ├── img2.jpg │ │ ├── img23.jpg │ │ ├── img24.jpg │ │ ├── img25.jpg │ │ ├── img26.jpg │ │ ├── img27.jpg │ │ ├── img3.jpg │ │ ├── img4.jpg │ │ ├── img5.jpg │ │ ├── img6.jpg │ │ ├── img7.jpg │ │ ├── img8.jpg │ │ └── img9.jpg │ ├── js │ │ ├── ResizeSensor.js │ │ ├── bootstrap-tagsinput.min.js │ │ ├── chart.chartjs.js │ │ ├── chart.flot.js │ │ ├── chart.morris.js │ │ ├── chart.rickshaw.js │ │ ├── chart.sparkline.js │ │ ├── dashboard.js │ │ ├── jquery-2.2.4.min.js │ │ ├── jquery.min.js │ │ ├── jquery.vmap.sampledata.js │ │ ├── map.apple.js │ │ ├── map.bluewater.js │ │ ├── map.mapbox.js │ │ ├── map.shadesofgray.js │ │ ├── map.shiftworker.js │ │ ├── starlight.js │ │ ├── sweetalert2.min.js │ │ ├── toastr.min.js │ │ └── widgets.js │ ├── lib │ │ ├── Flot │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ └── jquery.flot.resize.js │ │ ├── Ionicons │ │ │ ├── css │ │ │ │ └── ionicons.css │ │ │ └── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ ├── SpinKit │ │ │ └── spinkit.css │ │ ├── animate.css │ │ │ └── animate.css │ │ ├── bootstrap │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.scss │ │ ├── chart.js │ │ │ └── Chart.js │ │ ├── d3 │ │ │ └── d3.js │ │ ├── datatables-responsive │ │ │ ├── dataTables.responsive.js │ │ │ └── responsive.dataTables.scss │ │ ├── datatables │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.js │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── eve-raphael │ │ │ └── eve.js │ │ ├── flot-spline │ │ │ └── jquery.flot.spline.js │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── gmaps │ │ │ └── gmaps.js │ │ ├── highlightjs │ │ │ ├── default.css │ │ │ ├── github.css │ │ │ └── highlight.pack.js │ │ ├── jquery-ui │ │ │ └── jquery-ui.js │ │ ├── jquery.sparkline.bower │ │ │ └── jquery.sparkline.min.js │ │ ├── jquery.steps │ │ │ ├── jquery.steps.css │ │ │ └── jquery.steps.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── jqvmap │ │ │ ├── jquery.vmap.js │ │ │ ├── jquery.vmap.min.js │ │ │ ├── jqvmap.css │ │ │ ├── jqvmap.min.css │ │ │ └── maps │ │ │ │ ├── continents │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ └── jquery.vmap.world.js │ │ ├── medium-editor │ │ │ ├── default.css │ │ │ ├── medium-editor.css │ │ │ └── medium-editor.js │ │ ├── mocha │ │ │ └── mocha.js │ │ ├── morris.js │ │ │ ├── morris.css │ │ │ └── morris.js │ │ ├── parsleyjs │ │ │ └── parsley.js │ │ ├── perfect-scrollbar │ │ │ ├── css │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ └── perfect-scrollbar.min.css │ │ │ └── js │ │ │ │ ├── perfect-scrollbar.jquery.js │ │ │ │ ├── perfect-scrollbar.jquery.min.js │ │ │ │ ├── perfect-scrollbar.js │ │ │ │ └── perfect-scrollbar.min.js │ │ ├── popper.js │ │ │ └── popper.js │ │ ├── raphael │ │ │ └── raphael.min.js │ │ ├── rickshaw │ │ │ ├── rickshaw.css │ │ │ ├── rickshaw.js │ │ │ ├── rickshaw.min.css │ │ │ └── rickshaw.min.js │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ ├── sparklinejs │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── Changelog.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── .gitignore │ │ │ ├── index.js │ │ │ ├── minheader.txt │ │ │ ├── sparkline.jquery.json │ │ │ ├── src │ │ │ │ ├── base.js │ │ │ │ ├── chart-bar.js │ │ │ │ ├── chart-box.js │ │ │ │ ├── chart-bullet.js │ │ │ │ ├── chart-discrete.js │ │ │ │ ├── chart-line.js │ │ │ │ ├── chart-pie.js │ │ │ │ ├── chart-tristate.js │ │ │ │ ├── defaults.js │ │ │ │ ├── footer.js │ │ │ │ ├── header.js │ │ │ │ ├── interact.js │ │ │ │ ├── rangemap.js │ │ │ │ ├── simpledraw.js │ │ │ │ ├── utils.js │ │ │ │ ├── vcanvas-base.js │ │ │ │ ├── vcanvas-canvas.js │ │ │ │ └── vcanvas-vml.js │ │ │ └── version.txt │ │ ├── spectrum │ │ │ ├── spectrum.css │ │ │ └── spectrum.js │ │ └── summernote │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ ├── summernote-bs4.min.js │ │ │ ├── summernote-lite.css │ │ │ ├── summernote-lite.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ └── scss │ │ ├── app.scss │ │ ├── bootstrap │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _custom-forms.scss │ │ ├── _custom.scss │ │ ├── _form-layouts.scss │ │ ├── _forms.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ └── _variables.scss │ │ ├── lib │ │ ├── _chartist.scss │ │ ├── _codemirror.scss │ │ ├── _datatables.scss │ │ ├── _flot.scss │ │ ├── _jquery-steps.scss │ │ ├── _jquery-ui.scss │ │ ├── _jqvmap.scss │ │ ├── _medium-editor.scss │ │ ├── _mixins.scss │ │ ├── _morris.scss │ │ ├── _parsley.scss │ │ ├── _perfect-scrollbar.scss │ │ ├── _rickshaw.scss │ │ ├── _select2.scss │ │ ├── _sparkline.scss │ │ ├── _spectrum.scss │ │ ├── _summernote.scss │ │ └── _tagsinput.scss │ │ ├── pages.scss │ │ ├── starlight.scss │ │ └── util │ │ ├── _background.scss │ │ ├── _border.scss │ │ ├── _height.scss │ │ ├── _hover.scss │ │ ├── _margin.scss │ │ ├── _misc.scss │ │ ├── _padding.scss │ │ ├── _position.scss │ │ ├── _typography.scss │ │ └── _width.scss ├── css │ └── app.css ├── frontend │ ├── images │ │ ├── adv_1.png │ │ ├── adv_2.png │ │ ├── adv_3.png │ │ ├── banner_2_background.jpg │ │ ├── banner_2_product.png │ │ ├── banner_background.jpg │ │ ├── banner_product.png │ │ ├── best_1.png │ │ ├── best_2.png │ │ ├── best_3.png │ │ ├── best_4.png │ │ ├── best_5.png │ │ ├── best_6.png │ │ ├── blog_1.jpg │ │ ├── blog_2.jpg │ │ ├── blog_3.jpg │ │ ├── blog_4.jpg │ │ ├── blog_5.jpg │ │ ├── blog_6.jpg │ │ ├── blog_7.jpg │ │ ├── blog_8.jpg │ │ ├── blog_9.jpg │ │ ├── brands_1.jpg │ │ ├── brands_2.jpg │ │ ├── brands_3.jpg │ │ ├── brands_4.jpg │ │ ├── brands_5.jpg │ │ ├── brands_6.jpg │ │ ├── brands_7.jpg │ │ ├── brands_8.jpg │ │ ├── cart.png │ │ ├── char_1.png │ │ ├── char_2.png │ │ ├── char_3.png │ │ ├── char_4.png │ │ ├── contact_1.png │ │ ├── contact_2.png │ │ ├── contact_3.png │ │ ├── deals.png │ │ ├── featured_1.png │ │ ├── featured_2.png │ │ ├── featured_3.png │ │ ├── featured_4.png │ │ ├── featured_5.png │ │ ├── featured_6.png │ │ ├── featured_7.png │ │ ├── featured_8.png │ │ ├── heart.png │ │ ├── logos_1.png │ │ ├── logos_2.png │ │ ├── logos_3.png │ │ ├── logos_4.png │ │ ├── mail.png │ │ ├── mail_white.png │ │ ├── mastercard.png │ │ ├── mollie.png │ │ ├── new_1.jpg │ │ ├── new_2.jpg │ │ ├── new_3.jpg │ │ ├── new_4.jpg │ │ ├── new_5.jpg │ │ ├── new_6.jpg │ │ ├── new_7.jpg │ │ ├── new_8.jpg │ │ ├── new_single.png │ │ ├── paypal.png │ │ ├── phone.png │ │ ├── phone_white.png │ │ ├── popular_1.png │ │ ├── popular_2.png │ │ ├── popular_3.png │ │ ├── popular_4.png │ │ ├── popular_5.png │ │ ├── quote.png │ │ ├── review_1.jpg │ │ ├── review_2.jpg │ │ ├── review_3.jpg │ │ ├── search.png │ │ ├── send.png │ │ ├── shop_1.jpg │ │ ├── shop_2.jpg │ │ ├── shop_background.jpg │ │ ├── shopping_cart.jpg │ │ ├── single_2.jpg │ │ ├── single_3.jpg │ │ ├── single_4.jpg │ │ ├── trends_1.jpg │ │ ├── trends_2.jpg │ │ ├── trends_3.jpg │ │ ├── trends_background.jpg │ │ ├── user.svg │ │ ├── view_1.jpg │ │ ├── view_2.jpg │ │ ├── view_3.jpg │ │ ├── view_4.jpg │ │ ├── view_5.jpg │ │ └── view_6.jpg │ ├── js │ │ ├── blog_custom.js │ │ ├── blog_single_custom.js │ │ ├── cart_custom.js │ │ ├── contact_custom.js │ │ ├── custom.js │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery.min.js │ │ ├── product_custom.js │ │ ├── regular_custom.js │ │ ├── shop_custom.js │ │ ├── sweetalert.min.js │ │ └── sweetalert2@8.js │ ├── plugins │ │ ├── Isotope │ │ │ └── isotope.pkgd.min.js │ │ ├── OwlCarousel2-2.2.1 │ │ │ ├── animate.css │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.js │ │ │ ├── owl.theme.default.css │ │ │ └── owl.video.play.png │ │ ├── easing │ │ │ └── easing.js │ │ ├── fontawesome-free-5.0.1 │ │ │ ├── css │ │ │ │ └── fontawesome-all.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── greensock │ │ │ ├── ScrollToPlugin.min.js │ │ │ ├── TimelineMax.min.js │ │ │ ├── TweenMax.min.js │ │ │ └── animation.gsap.min.js │ │ ├── jquery-ui-1.12.1.custom │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── parallax-js-master │ │ │ └── parallax.min.js │ │ ├── scrollmagic │ │ │ └── ScrollMagic.min.js │ │ └── slick-1.8.0 │ │ │ ├── slick.css │ │ │ └── slick.js │ └── styles │ │ ├── blog_responsive.css │ │ ├── blog_single_responsive.css │ │ ├── blog_single_styles.css │ │ ├── blog_styles.css │ │ ├── bootstrap4 │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ └── popper.js │ │ ├── cart_responsive.css │ │ ├── cart_styles.css │ │ ├── contact_responsive.css │ │ ├── contact_styles.css │ │ ├── js.stripe.com │ │ ├── main_styles.css │ │ ├── product_responsive.css │ │ ├── product_styles.css │ │ ├── regular_responsive.css │ │ ├── regular_styles.css │ │ ├── responsive.css │ │ ├── shop_responsive.css │ │ └── shop_styles.css ├── js │ └── app.js ├── media │ ├── brand │ │ ├── 121019_15_06_561582992742.jpg │ │ ├── 121019_16_29_061582992408.jpg │ │ ├── 12_10_19_481582992705.png │ │ ├── 171019_14_37_171582992437.png │ │ ├── 231019_15_09_391582992782.png │ │ ├── 231019_15_10_371582992634.png │ │ ├── 231019_15_14_361582992479.jpg │ │ ├── 231019_15_16_381582992839.png │ │ ├── 231019_15_25_361582992524.png │ │ ├── 231019_15_29_371582992910.jpg │ │ ├── 231019_15_40_371582992874.png │ │ ├── 231019_15_42_361582992569.png │ │ ├── 231019_15_51_371582992941.jpg │ │ ├── 231019_15_52_391582992968.png │ │ ├── 231019_15_55_361582992604.png │ │ ├── Gfavicon1582574592.png │ │ ├── mlogo1582609223.png │ │ └── pc1582574666.jpeg │ ├── post │ │ ├── 1.6597956488964E+15.JPG │ │ ├── 1.6597974460577E+15.jpeg │ │ ├── 1660941563929985.jpeg │ │ ├── 1660941847566777.jpeg │ │ ├── 1705002680488359.jpg │ │ ├── 1705003010031971.jpg │ │ ├── 1705003093946603.jpg │ │ ├── 1705003534044539.jpg │ │ └── 1705003943736354.jpg │ └── product │ │ ├── 1.659711557189E+15.jpg │ │ ├── 1.6597115576776E+15.jpg │ │ ├── 1.6597138179016E+15.jpg │ │ ├── 1.6597138184252E+15.jpg │ │ ├── 1.6597143356703E+15.jpeg │ │ ├── 1.6597143359903E+15.jpg │ │ ├── 1.6597772370071E+15.jpg │ │ ├── 1.6597773321166E+15.jpg │ │ ├── 1.6597773835914E+15.jpg │ │ ├── 1.6597895606799E+15.jpg │ │ ├── 1.6598876769862E+15.png │ │ ├── 1.6598876773618E+15.png │ │ ├── 1.6598962864853E+15.png │ │ ├── 1.6598981210615E+15.png │ │ ├── 1.6598981213151E+15.png │ │ ├── 1.6598985152504E+15.jpg │ │ ├── 1.659898515482E+15.jpg │ │ ├── 1.659898515657E+15.jpg │ │ ├── 1.6598986487543E+15.jpg │ │ ├── 1.6598986489413E+15.jpg │ │ ├── 1.6598986490313E+15.jpg │ │ ├── 1.6598988130225E+15.png │ │ ├── 1.6598988133411E+15.png │ │ ├── 1.6598988135311E+15.png │ │ ├── 1.6598989452824E+15.jpg │ │ ├── 1.659898945486E+15.jpg │ │ ├── 1.659898945631E+15.jpg │ │ ├── 1.6598990707698E+15.jpg │ │ ├── 1.6598990709198E+15.jpg │ │ ├── 1.6598990710198E+15.jpg │ │ ├── 1.6598991713802E+15.png │ │ ├── 1.6598991716752E+15.png │ │ ├── 1.6598991719388E+15.png │ │ ├── 1.6598993014739E+15.png │ │ ├── 1.6598993016839E+15.png │ │ ├── 1.6598995360244E+15.jpg │ │ ├── 1.6600861513599E+15.png │ │ ├── 1570984353-structure22-1570984337.jpg1582826442.jpg │ │ ├── 1582826935.png │ │ ├── 1660490409866451.png │ │ ├── 1660490410596845.png │ │ ├── 1660490410665121.png │ │ ├── 1660491067015005.png │ │ ├── 1660491067079207.png │ │ ├── 1660491067100092.png │ │ ├── 1660494330568168.png │ │ ├── 1660494330597116.png │ │ ├── 1660494330628758.png │ │ ├── 1660494454264949.png │ │ ├── 1660494454313493.png │ │ ├── 1660494454334294.png │ │ ├── 1660494571380616.png │ │ ├── 1660494571411729.png │ │ ├── 1660494571489900.png │ │ ├── 1660505788123947.jpg │ │ ├── 1660505788379607.jpg │ │ ├── 1660635793618601.jpeg │ │ ├── 1704973002765099.png │ │ ├── 1704973002811279.png │ │ ├── 1704973002901717.png │ │ ├── laptop_PNG5905.png │ │ └── unnamed.png └── mix-manifest.json ├── readme.md ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── backup │ │ ├── ar │ │ └── notifications.php │ │ ├── cs │ │ └── notifications.php │ │ ├── da │ │ └── notifications.php │ │ ├── de │ │ └── notifications.php │ │ ├── en │ │ └── notifications.php │ │ ├── es │ │ └── notifications.php │ │ ├── fa │ │ └── notifications.php │ │ ├── fi │ │ └── notifications.php │ │ ├── fr │ │ └── notifications.php │ │ ├── hi │ │ └── notifications.php │ │ ├── id │ │ └── notifications.php │ │ ├── it │ │ └── notifications.php │ │ ├── nl │ │ └── notifications.php │ │ ├── pl │ │ └── notifications.php │ │ ├── pt-BR │ │ └── notifications.php │ │ ├── ro │ │ └── notifications.php │ │ ├── ru │ │ └── notifications.php │ │ ├── tr │ │ └── notifications.php │ │ ├── uk │ │ └── notifications.php │ │ ├── zh-CN │ │ └── notifications.php │ │ └── zh-TW │ │ └── notifications.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── admin_layouts.blade.php │ ├── auth │ │ ├── login.blade.php │ │ ├── passwordchange.blade.php │ │ └── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ ├── blog │ │ ├── create.blade.php │ │ ├── createCategory.blade.php │ │ ├── edit.blade.php │ │ ├── editCategory.blade.php │ │ ├── index.blade.php │ │ └── indexCategory.blade.php │ ├── category │ │ ├── brand.blade.php │ │ ├── category.blade.php │ │ ├── edit_brand.blade.php │ │ ├── edit_category.blade.php │ │ ├── edit_subcategory.blade.php │ │ └── subcategory.blade.php │ ├── coupon │ │ ├── coupon.blade.php │ │ ├── edit_coupon.blade.php │ │ ├── newsletter.blade.php │ │ └── seo.blade.php │ ├── home.blade.php │ ├── order │ │ ├── pending.blade.php │ │ └── view_order.blade.php │ ├── product │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── report │ │ ├── search.blade.php │ │ ├── search_report.blade.php │ │ └── today_order.blade.php │ ├── return │ │ ├── all.blade.php │ │ └── request.blade.php │ ├── role │ │ ├── all_role.blade.php │ │ ├── create.blade.php │ │ └── edit_role.blade.php │ ├── setting │ │ ├── db_backup.blade.php │ │ └── site_setting.blade.php │ └── stock │ │ ├── stock.blade.php │ │ └── stockOut.blade.php │ ├── auth │ ├── changepassword.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ └── menubar.blade.php │ ├── mail │ └── invoice.blade.php │ └── pages │ ├── all_products.blade.php │ ├── blog.blade.php │ ├── blogDescription.blade.php │ ├── cart.blade.php │ ├── checkout.blade.php │ ├── index.blade.php │ ├── payment.blade.php │ ├── payment │ └── stripe.blade.php │ ├── product_details.blade.php │ ├── returnorder.blade.php │ ├── search.blade.php │ ├── track.blade.php │ ├── view_order.blade.php │ └── wishlist.blade.php ├── robots.txt ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── web.config └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY=base64:x9JP30eTKZjDnKK0gynXw/+qJ2HvguXn6D0Rtb1/dDI= 4 | APP_DEBUG=true 5 | # APP_URL=http://localhost 6 | APP_URL=http://localhost/ecommerce/ 7 | 8 | LOG_CHANNEL=stack 9 | 10 | DB_CONNECTION=mysql 11 | DB_HOST=127.0.0.1 12 | DB_PORT=3306 13 | DB_DATABASE=ecommerce 14 | DB_USERNAME=root 15 | DB_PASSWORD= 16 | 17 | BROADCAST_DRIVER=log 18 | CACHE_DRIVER=file 19 | QUEUE_CONNECTION=sync 20 | SESSION_DRIVER=file 21 | SESSION_LIFETIME=120 22 | 23 | REDIS_HOST=127.0.0.1 24 | REDIS_PASSWORD=null 25 | REDIS_PORT=6379 26 | 27 | MAIL_DRIVER=smtp 28 | MAIL_HOST=smtp.mailtrap.io 29 | MAIL_PORT=2525 30 | MAIL_USERNAME=f2c71eb3a86fc1 31 | MAIL_PASSWORD=112fc8d5e851ee 32 | MAIL_ENCRYPTION=tls 33 | MAIL_FROM_ADDRESS=ecommerclh@gmail.com 34 | MAIL_FROM_NAME="EcommerceLH" 35 | # MAIL_FROM_NAME="${APP_NAME}" 36 | 37 | AWS_ACCESS_KEY_ID= 38 | AWS_SECRET_ACCESS_KEY= 39 | AWS_DEFAULT_REGION=us-east-1 40 | AWS_BUCKET= 41 | 42 | PUSHER_APP_ID= 43 | PUSHER_APP_KEY= 44 | PUSHER_APP_SECRET= 45 | PUSHER_APP_CLUSTER=mt1 46 | 47 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 48 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 49 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | # .env 7 | .env.backup 8 | .phpunit.result.cache 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Handle Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | enabled: 4 | - alpha_ordered_imports 5 | disabled: 6 | - length_ordered_imports 7 | - unused_use 8 | finder: 9 | not-name: 10 | - index.php 11 | - server.php 12 | js: 13 | finder: 14 | not-name: 15 | - webpack.mix.js 16 | css: true 17 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.wordWrap": "on", 3 | "editor.tabSize": 2, 4 | "editor.detectIndentation": false 5 | } -------------------------------------------------------------------------------- /app/Admin.php: -------------------------------------------------------------------------------- 1 | notify(new AdminResetPasswordNotification($token)); 17 | } 18 | 19 | protected $guard = 'admin'; 20 | 21 | 22 | protected $fillable = [ 23 | 'name', 'email', 'password','phone' 24 | ]; 25 | 26 | protected $hidden = [ 27 | 'password', 'remember_token', 28 | ]; 29 | } 30 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 28 | // ->hourly(); 29 | } 30 | 31 | /** 32 | * Register the commands for the application. 33 | * 34 | * @return void 35 | */ 36 | protected function commands() 37 | { 38 | $this->load(__DIR__.'/Commands'); 39 | 40 | require base_path('routes/console.php'); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- 1 | middleware('guest:admin'); 33 | } 34 | 35 | public function showLinkRequestForm() 36 | { 37 | // return view('admin.passwords.email'); 38 | return view('admin.auth.passwords.email'); 39 | } 40 | 41 | public function broker() 42 | { 43 | return Password::broker('admins'); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LoginController.php: -------------------------------------------------------------------------------- 1 | middleware('guest:admin')->except('logout'); 39 | } 40 | 41 | public function showLoginForm() 42 | { 43 | if (Auth::id()) { 44 | return redirect()->back(); 45 | }else{ 46 | return view('admin.auth.login'); 47 | 48 | } 49 | 50 | } 51 | 52 | protected function guard() 53 | { 54 | return Auth::guard('admin'); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/VerificationController.php: -------------------------------------------------------------------------------- 1 | middleware('auth:admin'); 38 | $this->middleware('signed')->only('verify'); 39 | $this->middleware('throttle:6,1')->only('verify', 'resend'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest')->except('logout'); 38 | //for restricting the users to access the admin login after logged in as user 39 | $this->middleware('guest:admin')->except('logout'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 38 | $this->middleware('signed')->only('verify'); 39 | $this->middleware('throttle:6,1')->only('verify', 'resend'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/BlogController.php: -------------------------------------------------------------------------------- 1 | join('post_category','posts.category_id','post_category.id') 14 | ->select('posts.*','post_category.category_name_en','post_category.category_name_bn') 15 | ->orderBy('id','desc') 16 | ->get(); 17 | 18 | return view('pages.blog',compact('post')); 19 | } 20 | 21 | 22 | public function description($id){ 23 | $post=DB::table('posts') 24 | ->join('post_category','posts.category_id','post_category.id') 25 | ->select('posts.*','post_category.category_name_en','post_category.category_name_bn') 26 | ->where('posts.id',$id) 27 | ->first(); 28 | return view('pages.blogDescription',compact('post')); 29 | } 30 | 31 | 32 | 33 | //------------Making Session to get Bangla/English language-------------------- 34 | 35 | public function Bangla() 36 | { 37 | Session::get('lang'); 38 | session()->forget('lang'); 39 | Session::put('lang','bangla'); 40 | return redirect()->back(); 41 | } 42 | 43 | public function English() 44 | { 45 | Session::get('lang'); 46 | session()->forget('lang'); 47 | Session::put('lang','english'); 48 | return redirect()->back(); 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | redirect(); 14 | } 15 | 16 | public function callback($provider) 17 | { 18 | 19 | $getInfo = Socialite::driver($provider)->user(); 20 | 21 | $user = $this->createUser($getInfo,$provider); 22 | 23 | auth()->login($user); 24 | 25 | return redirect()->to('/home'); 26 | 27 | } 28 | function createUser($getInfo,$provider){ 29 | 30 | $user = User::where('provider_id', $getInfo->id)->first(); 31 | 32 | if (!$user) { 33 | $user = User::create([ 34 | 'name' => $getInfo->name, 35 | 'email' => $getInfo->email, 36 | 'provider' => $provider, 37 | 'provider_id' => $getInfo->id 38 | ]); 39 | } 40 | return $user; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | data = $data; //---$data theke sob data te rakchi-- 19 | } 20 | 21 | /** 22 | * Build the message. 23 | * 24 | * @return $this 25 | */ 26 | public function build() //-------------- 27 | { 28 | $info = $this->data; 29 | return $this->from('learnhunter@gmail.com')->view('mail.invoice',compact('info'))->subject('Successfully Buy product'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Model/Admin/Brand.php: -------------------------------------------------------------------------------- 1 | token = $token; 24 | } 25 | 26 | /** 27 | * Get the notification's delivery channels. 28 | * 29 | * @param mixed $notifiable 30 | * @return array 31 | */ 32 | public function via($notifiable) 33 | { 34 | return ['mail']; 35 | } 36 | 37 | /** 38 | * Get the mail representation of the notification. 39 | * 40 | * @param mixed $notifiable 41 | * @return \Illuminate\Notifications\Messages\MailMessage 42 | */ 43 | public function toMail($notifiable) 44 | { 45 | return (new MailMessage) 46 | ->line('You are receiving this email because we received a password reset request for your account.') 47 | ->action('Reset Password', route('admin.password.reset', $this->token)) 48 | ->line('If you did not request a password reset, no further action is required.'); 49 | } 50 | 51 | /** 52 | * Get the array representation of the notification. 53 | * 54 | * @param mixed $notifiable 55 | * @return array 56 | */ 57 | public function toArray($notifiable) 58 | { 59 | return [ 60 | // 61 | ]; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 18 | ]; 19 | 20 | /** 21 | * Register any authentication / authorization services. 22 | * 23 | * @return void 24 | */ 25 | public function boot() 26 | { 27 | $this->registerPolicies(); 28 | 29 | Passport::routes(); 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | parent::boot(); 31 | 32 | // 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | 'datetime', 39 | ]; 40 | } 41 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | singleton( 30 | Illuminate\Contracts\Http\Kernel::class, 31 | App\Http\Kernel::class 32 | ); 33 | 34 | $app->singleton( 35 | Illuminate\Contracts\Console\Kernel::class, 36 | App\Console\Kernel::class 37 | ); 38 | 39 | $app->singleton( 40 | Illuminate\Contracts\Debug\ExceptionHandler::class, 41 | App\Exceptions\Handler::class 42 | ); 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Return The Application 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This script returns the application instance. The instance is given to 50 | | the calling script so we can separate the building of the instances 51 | | from the actual running of the application and sending responses. 52 | | 53 | */ 54 | 55 | return $app; 56 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- 1 | 'bcrypt', 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Bcrypt Options 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may specify the configuration options that should be used when 26 | | passwords are hashed using the Bcrypt algorithm. This will allow you 27 | | to control the amount of time it takes to hash the given password. 28 | | 29 | */ 30 | 31 | 'bcrypt' => [ 32 | 'rounds' => env('BCRYPT_ROUNDS', 10), 33 | ], 34 | 35 | /* 36 | |-------------------------------------------------------------------------- 37 | | Argon Options 38 | |-------------------------------------------------------------------------- 39 | | 40 | | Here you may specify the configuration options that should be used when 41 | | passwords are hashed using the Argon algorithm. These will allow you 42 | | to control the amount of time it takes to hash the given password. 43 | | 44 | */ 45 | 46 | 'argon' => [ 47 | 'memory' => 1024, 48 | 'threads' => 2, 49 | 'time' => 2, 50 | ], 51 | 52 | ]; 53 | -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- 1 | 'gd' 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'postmark' => [ 24 | 'token' => env('POSTMARK_TOKEN'), 25 | ], 26 | 27 | 'ses' => [ 28 | 'key' => env('AWS_ACCESS_KEY_ID'), 29 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 30 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 31 | ], 32 | 33 | 'google' => [ 34 | 'client_id' => '519432288902-mt133rmbrucumh0b9vbhdueim84dj120.apps.googleusercontent.com', 35 | 'client_secret' => 'CzvnP2BOS6AWabRqbrBFzGLj', 36 | 'redirect' => 'http://localhost/ecommerce/callback/google', 37 | ], 38 | 39 | // 'facebook' => [ 40 | // 'client_id' => 'xxxx', 41 | // 'client_secret' => 'xxx', 42 | // 'redirect' => 'http://localhost/ecommerce/callback/facebook', 43 | // ], 44 | 45 | ]; 46 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | define(User::class, function (Faker $faker) { 20 | return [ 21 | 'name' => $faker->name, 22 | 'email' => $faker->unique()->safeEmail, 23 | 'email_verified_at' => now(), 24 | 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 25 | 'remember_token' => Str::random(10), 26 | ]; 27 | }); 28 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('name'); 19 | $table->string('email')->unique(); 20 | $table->string('phone')->nullable(); 21 | $table->string('provider'); 22 | $table->string('provider_id'); 23 | $table->timestamp('email_verified_at')->nullable(); 24 | $table->string('password'); 25 | $table->rememberToken(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('users'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->text('connection'); 19 | $table->text('queue'); 20 | $table->longText('payload'); 21 | $table->longText('exception'); 22 | $table->timestamp('failed_at')->useCurrent(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('failed_jobs'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2019_11_06_075920_create_admins_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('name'); 19 | $table->string('phone')->nullable(); 20 | $table->string('email')->unique(); 21 | $table->timestamp('email_verified_at')->nullable(); 22 | $table->string('password'); 23 | $table->rememberToken(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('admins'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2020_02_22_194920_create_categories_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('category_name'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('categories'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2020_02_22_195135_create_subcategories_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->integer('category_id'); 19 | $table->string('subcategory_name'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('subcategories'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2020_02_24_195753_create_brands_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('brand_name'); 19 | $table->string('brand_logo')->nullable(); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('brands'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2020_02_25_160219_create_coupons_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('coupon'); 19 | $table->string('discount'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('coupons'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2020_02_25_203447_create_newsletters_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('email'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('newsletters'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2020_02_28_144335_create_post_category_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('category_name_en'); 19 | $table->string('category_name_bn'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('post_category'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2020_02_28_144352_create_posts_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->integer('category_id'); 19 | $table->string('post_title_en'); 20 | $table->string('post_title_bn'); 21 | $table->string('post_image'); 22 | $table->longtext('details_en'); 23 | $table->longtext('details_bn'); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('posts'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2020_03_05_182725_create_wishlists_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->integer('user_id'); 19 | $table->integer('product_id'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::dropIfExists('wishlists'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2020_03_10_213028_create_settings_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('vat')->nullable(); 19 | $table->string('shipping_charge')->nullable(); 20 | $table->string('shopname')->nullable(); 21 | $table->string('email')->nullable(); 22 | $table->string('phone')->nullable(); 23 | $table->string('address')->nullable(); 24 | $table->string('logo')->nullable(); 25 | $table->timestamps(); 26 | }); 27 | } 28 | 29 | /** 30 | * Reverse the migrations. 31 | * 32 | * @return void 33 | */ 34 | public function down() 35 | { 36 | Schema::dropIfExists('settings'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /database/migrations/2020_03_13_181939_create_orders_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('user_id')->nullable(); 19 | $table->string('payment_id')->nullable(); 20 | $table->string('paying_amount')->nullable(); 21 | $table->string('blnc_transection')->nullable(); 22 | $table->string('stripe_order_id')->nullable(); 23 | $table->string('subtotal')->nullable(); 24 | $table->string('shipping')->nullable(); 25 | $table->string('vat')->nullable(); 26 | $table->string('total')->nullable(); 27 | $table->string('payment_type')->nullable(); 28 | $table->string('status')->nullable()->default(0); 29 | $table->string('return_order')->nullable()->default(0); 30 | $table->string('month')->nullable(); 31 | $table->string('date')->nullable(); 32 | $table->string('year')->nullable(); 33 | $table->string('status_code')->nullable(); 34 | $table->timestamps(); 35 | }); 36 | } 37 | 38 | /** 39 | * Reverse the migrations. 40 | * 41 | * @return void 42 | */ 43 | public function down() 44 | { 45 | Schema::dropIfExists('orders'); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /database/migrations/2020_03_13_182052_create_order_details_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('order_id')->nullable(); 19 | $table->string('product_id')->nullable(); 20 | $table->string('product_name')->nullable(); 21 | $table->string('color')->nullable(); 22 | $table->string('size')->nullable(); 23 | $table->string('quantity')->nullable(); 24 | $table->string('singleprice')->nullable(); 25 | $table->string('totalprice')->nullable(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('order_details'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2020_03_13_182122_create_shipping_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('order_id'); 19 | $table->string('ship_name')->nullable(); 20 | $table->string('ship_phone')->nullable(); 21 | $table->string('ship_email')->nullable(); 22 | $table->string('ship_address')->nullable(); 23 | $table->string('ship_city')->nullable(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('shipping'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2020_03_17_160511_create_subscribers_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('email'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('subscribers'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2020_03_17_161233_create_seo_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('meta_title')->nullable(); 19 | $table->string('meta_author')->nullable(); 20 | $table->string('meta_tag')->nullable(); 21 | $table->text('meta_description')->nullable(); 22 | $table->text('google_analytics')->nullable(); 23 | $table->text('bing_analytics')->nullable(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('seo'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2020_03_23_143810_create_sitesetting_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('phone_one')->nullable(); 19 | $table->string('phone_two')->nullable(); 20 | $table->string('email')->nullable(); 21 | $table->string('company_name')->nullable(); 22 | $table->string('company_address')->nullable(); 23 | $table->string('facebook')->nullable(); 24 | $table->string('youtube')->nullable(); 25 | $table->string('instagram')->nullable(); 26 | $table->string('twitter')->nullable(); 27 | $table->timestamps(); 28 | }); 29 | } 30 | 31 | /** 32 | * Reverse the migrations. 33 | * 34 | * @return void 35 | */ 36 | public function down() 37 | { 38 | Schema::dropIfExists('sitesetting'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "npm run development -- --watch", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.19", 14 | "bootstrap": "^4.0.0", 15 | "cross-env": "^5.1", 16 | "jquery": "^3.2", 17 | "laravel-mix": "^4.0.7", 18 | "lodash": "^4.17.13", 19 | "popper.js": "^1.12", 20 | "resolve-url-loader": "^2.3.1", 21 | "sass": "^1.20.1", 22 | "sass-loader": "7.*", 23 | "vue": "^2.5.17", 24 | "vue-template-compiler": "^2.6.10" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | ./tests/Unit 16 | 17 | 18 | 19 | ./tests/Feature 20 | 21 | 22 | 23 | 24 | ./app 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /public/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/avatar.jpg -------------------------------------------------------------------------------- /public/backend/css/bootstrap-tagsinput.css: -------------------------------------------------------------------------------- 1 | /* 2 | * bootstrap-tagsinput v0.8.0 3 | * 4 | */ 5 | 6 | .bootstrap-tagsinput { 7 | background-color: #fff; 8 | border: 1px solid #ccc; 9 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 10 | display: inline-block; 11 | padding: 4px 6px; 12 | color: #555; 13 | vertical-align: middle; 14 | border-radius: 4px; 15 | max-width: 100%; 16 | line-height: 22px; 17 | cursor: text; 18 | } 19 | .bootstrap-tagsinput input { 20 | border: none; 21 | box-shadow: none; 22 | outline: none; 23 | background-color: transparent; 24 | padding: 0 6px; 25 | margin: 0; 26 | width: auto; 27 | max-width: inherit; 28 | } 29 | .bootstrap-tagsinput.form-control input::-moz-placeholder { 30 | color: #777; 31 | opacity: 1; 32 | } 33 | .bootstrap-tagsinput.form-control input:-ms-input-placeholder { 34 | color: #777; 35 | } 36 | .bootstrap-tagsinput.form-control input::-webkit-input-placeholder { 37 | color: #777; 38 | } 39 | .bootstrap-tagsinput input:focus { 40 | border: none; 41 | box-shadow: none; 42 | } 43 | .bootstrap-tagsinput .tag { 44 | margin-right: 2px; 45 | color: white; 46 | } 47 | .bootstrap-tagsinput .tag [data-role="remove"] { 48 | margin-left: 8px; 49 | cursor: pointer; 50 | } 51 | .bootstrap-tagsinput .tag [data-role="remove"]:after { 52 | content: "x"; 53 | padding: 0px 2px; 54 | } 55 | .bootstrap-tagsinput .tag [data-role="remove"]:hover { 56 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 57 | } 58 | .bootstrap-tagsinput .tag [data-role="remove"]:hover:active { 59 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 60 | } 61 | -------------------------------------------------------------------------------- /public/backend/img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img1.jpg -------------------------------------------------------------------------------- /public/backend/img/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img10.jpg -------------------------------------------------------------------------------- /public/backend/img/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img11.jpg -------------------------------------------------------------------------------- /public/backend/img/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img12.jpg -------------------------------------------------------------------------------- /public/backend/img/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img2.jpg -------------------------------------------------------------------------------- /public/backend/img/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img23.jpg -------------------------------------------------------------------------------- /public/backend/img/img24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img24.jpg -------------------------------------------------------------------------------- /public/backend/img/img25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img25.jpg -------------------------------------------------------------------------------- /public/backend/img/img26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img26.jpg -------------------------------------------------------------------------------- /public/backend/img/img27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img27.jpg -------------------------------------------------------------------------------- /public/backend/img/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img3.jpg -------------------------------------------------------------------------------- /public/backend/img/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img4.jpg -------------------------------------------------------------------------------- /public/backend/img/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img5.jpg -------------------------------------------------------------------------------- /public/backend/img/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img6.jpg -------------------------------------------------------------------------------- /public/backend/img/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img7.jpg -------------------------------------------------------------------------------- /public/backend/img/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img8.jpg -------------------------------------------------------------------------------- /public/backend/img/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/img/img9.jpg -------------------------------------------------------------------------------- /public/backend/js/map.bluewater.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | 'use strict'; 4 | 5 | var styleBlueWater = [{ 6 | 'featureType': 'administrative', 7 | 'elementType': 'labels.text.fill', 8 | 'stylers': [{ 9 | 'color': '#444444' 10 | }] 11 | }, { 12 | 'featureType': 'landscape', 13 | 'elementType': 'all', 14 | 'stylers': [{ 15 | 'color': '#f2f2f2' 16 | }] 17 | }, { 18 | 'featureType': 'poi', 19 | 'elementType': 'all', 20 | 'stylers': [{ 21 | 'visibility': 'off' 22 | }] 23 | }, { 24 | 'featureType': 'road', 25 | 'elementType': 'all', 26 | 'stylers': [{ 27 | 'saturation': -100 28 | }, { 29 | 'lightness': 45 30 | }] 31 | }, { 32 | 'featureType': 'road.highway', 33 | 'elementType': 'all', 34 | 'stylers': [{ 35 | 'visibility': 'simplified' 36 | }] 37 | }, { 38 | 'featureType': 'road.arterial', 39 | 'elementType': 'labels.icon', 40 | 'stylers': [{ 41 | 'visibility': 'off' 42 | }] 43 | }, { 44 | 'featureType': 'transit', 45 | 'elementType': 'all', 46 | 'stylers': [{ 47 | 'visibility': 'off' 48 | }] 49 | }, { 50 | 'featureType': 'water', 51 | 'elementType': 'all', 52 | 'stylers': [{ 53 | 'color': '#0866C6' 54 | }, { 55 | 'visibility': 'on' 56 | }] 57 | }]; 58 | 59 | var mapBlueWater = new GMaps({ 60 | el: '#mapBlueWater', 61 | zoom: 14, 62 | lat: 40.702247, 63 | lng: -73.996349 64 | }); 65 | 66 | 67 | // Map style is based on: 68 | // https://snazzymaps.com/style/4183/mostly-grayscale 69 | mapBlueWater.addStyle({ 70 | styledMapName:'Blue Water Map', 71 | styles: styleBlueWater, 72 | mapTypeId: 'map_blue_water' 73 | }); 74 | 75 | mapBlueWater.setStyle('map_blue_water'); 76 | 77 | }); 78 | -------------------------------------------------------------------------------- /public/backend/lib/Ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/Ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/backend/lib/Ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/Ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/backend/lib/Ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/Ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/backend/lib/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v4.0.0-beta (https://getbootstrap.com) 3 | * Copyright 2011-2017 The Bootstrap Authors 4 | * Copyright 2011-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */ 7 | 8 | @import "functions"; 9 | @import "variables"; 10 | @import "mixins"; 11 | @import "print"; 12 | @import "reboot"; 13 | @import "type"; 14 | @import "images"; 15 | @import "code"; 16 | @import "grid"; 17 | @import "tables"; 18 | @import "forms"; 19 | @import "buttons"; 20 | @import "transitions"; 21 | @import "dropdown"; 22 | @import "button-group"; 23 | @import "input-group"; 24 | @import "custom-forms"; 25 | @import "nav"; 26 | @import "navbar"; 27 | @import "card"; 28 | @import "breadcrumb"; 29 | @import "pagination"; 30 | @import "badge"; 31 | @import "jumbotron"; 32 | @import "alert"; 33 | @import "progress"; 34 | @import "media"; 35 | @import "list-group"; 36 | @import "close"; 37 | @import "modal"; 38 | @import "tooltip"; 39 | @import "popover"; 40 | @import "carousel"; 41 | @import "utilities"; 42 | -------------------------------------------------------------------------------- /public/backend/lib/datatables/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/datatables/sort_asc.png -------------------------------------------------------------------------------- /public/backend/lib/datatables/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/datatables/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/backend/lib/datatables/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/datatables/sort_both.png -------------------------------------------------------------------------------- /public/backend/lib/datatables/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/datatables/sort_desc.png -------------------------------------------------------------------------------- /public/backend/lib/datatables/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/datatables/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/backend/lib/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/backend/lib/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/backend/lib/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/backend/lib/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/backend/lib/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/backend/lib/highlightjs/default.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original highlight.js style (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: #F0F0F0; 12 | } 13 | 14 | 15 | /* Base color: saturation 0; */ 16 | 17 | .hljs, 18 | .hljs-subst { 19 | color: #444; 20 | } 21 | 22 | .hljs-comment { 23 | color: #888888; 24 | } 25 | 26 | .hljs-keyword, 27 | .hljs-attribute, 28 | .hljs-selector-tag, 29 | .hljs-meta-keyword, 30 | .hljs-doctag, 31 | .hljs-name { 32 | font-weight: bold; 33 | } 34 | 35 | 36 | /* User color: hue: 0 */ 37 | 38 | .hljs-type, 39 | .hljs-string, 40 | .hljs-number, 41 | .hljs-selector-id, 42 | .hljs-selector-class, 43 | .hljs-quote, 44 | .hljs-template-tag, 45 | .hljs-deletion { 46 | color: #880000; 47 | } 48 | 49 | .hljs-title, 50 | .hljs-section { 51 | color: #880000; 52 | font-weight: bold; 53 | } 54 | 55 | .hljs-regexp, 56 | .hljs-symbol, 57 | .hljs-variable, 58 | .hljs-template-variable, 59 | .hljs-link, 60 | .hljs-selector-attr, 61 | .hljs-selector-pseudo { 62 | color: #BC6060; 63 | } 64 | 65 | 66 | /* Language color: hue: 90; */ 67 | 68 | .hljs-literal { 69 | color: #78A960; 70 | } 71 | 72 | .hljs-built_in, 73 | .hljs-bullet, 74 | .hljs-code, 75 | .hljs-addition { 76 | color: #397300; 77 | } 78 | 79 | 80 | /* Meta color: hue: 200 */ 81 | 82 | .hljs-meta { 83 | color: #1f7199; 84 | } 85 | 86 | .hljs-meta-string { 87 | color: #4d99bf; 88 | } 89 | 90 | 91 | /* Misc effects */ 92 | 93 | .hljs-emphasis { 94 | font-style: italic; 95 | } 96 | 97 | .hljs-strong { 98 | font-weight: bold; 99 | } 100 | -------------------------------------------------------------------------------- /public/backend/lib/highlightjs/github.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | github.com style (c) Vasily Polovnyov 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | color: #333; 12 | background: #f8f8f8; 13 | } 14 | 15 | .hljs-comment, 16 | .hljs-quote { 17 | color: #998; 18 | font-style: italic; 19 | } 20 | 21 | .hljs-keyword, 22 | .hljs-selector-tag, 23 | .hljs-subst { 24 | color: #333; 25 | font-weight: bold; 26 | } 27 | 28 | .hljs-number, 29 | .hljs-literal, 30 | .hljs-variable, 31 | .hljs-template-variable, 32 | .hljs-tag .hljs-attr { 33 | color: #008080; 34 | } 35 | 36 | .hljs-string, 37 | .hljs-doctag { 38 | color: #d14; 39 | } 40 | 41 | .hljs-title, 42 | .hljs-section, 43 | .hljs-selector-id { 44 | color: #900; 45 | font-weight: bold; 46 | } 47 | 48 | .hljs-subst { 49 | font-weight: normal; 50 | } 51 | 52 | .hljs-type, 53 | .hljs-class .hljs-title { 54 | color: #458; 55 | font-weight: bold; 56 | } 57 | 58 | .hljs-tag, 59 | .hljs-name, 60 | .hljs-attribute { 61 | color: #000080; 62 | font-weight: normal; 63 | } 64 | 65 | .hljs-regexp, 66 | .hljs-link { 67 | color: #009926; 68 | } 69 | 70 | .hljs-symbol, 71 | .hljs-bullet { 72 | color: #990073; 73 | } 74 | 75 | .hljs-built_in, 76 | .hljs-builtin-name { 77 | color: #0086b3; 78 | } 79 | 80 | .hljs-meta { 81 | color: #999; 82 | font-weight: bold; 83 | } 84 | 85 | .hljs-deletion { 86 | background: #fdd; 87 | } 88 | 89 | .hljs-addition { 90 | background: #dfd; 91 | } 92 | 93 | .hljs-emphasis { 94 | font-style: italic; 95 | } 96 | 97 | .hljs-strong { 98 | font-weight: bold; 99 | } 100 | -------------------------------------------------------------------------------- /public/backend/lib/jqvmap/jqvmap.css: -------------------------------------------------------------------------------- 1 | .jqvmap-label 2 | { 3 | position: absolute; 4 | display: none; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-family: sans-serif, Verdana; 11 | font-size: smaller; 12 | padding: 3px; 13 | pointer-events:none; 14 | } 15 | .jqvmap-pin { 16 | pointer-events:none; 17 | } 18 | .jqvmap-zoomin, .jqvmap-zoomout 19 | { 20 | position: absolute; 21 | left: 10px; 22 | -webkit-border-radius: 3px; 23 | -moz-border-radius: 3px; 24 | border-radius: 3px; 25 | background: #000000; 26 | padding: 3px; 27 | color: white; 28 | width: 10px; 29 | height: 10px; 30 | cursor: pointer; 31 | line-height: 10px; 32 | text-align: center; 33 | } 34 | .jqvmap-zoomin 35 | { 36 | top: 10px; 37 | } 38 | .jqvmap-zoomout 39 | { 40 | top: 30px; 41 | } 42 | .jqvmap-region 43 | { 44 | cursor: pointer; 45 | } 46 | .jqvmap-ajax_response 47 | { 48 | width: 100%; 49 | height: 500px; 50 | } 51 | -------------------------------------------------------------------------------- /public/backend/lib/jqvmap/jqvmap.min.css: -------------------------------------------------------------------------------- 1 | .jqvmap-label,.jqvmap-pin{pointer-events:none}.jqvmap-label{position:absolute;display:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background:#292929;color:#fff;font-family:sans-serif,Verdana;font-size:smaller;padding:3px}.jqvmap-zoomin,.jqvmap-zoomout{position:absolute;left:10px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background:#000;padding:3px;color:#fff;width:10px;height:10px;cursor:pointer;line-height:10px;text-align:center}.jqvmap-zoomin{top:10px}.jqvmap-zoomout{top:30px}.jqvmap-region{cursor:pointer}.jqvmap-ajax_response{width:100%;height:500px} 2 | -------------------------------------------------------------------------------- /public/backend/lib/morris.js/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sparklinejs", 3 | "homepage": "https://github.com/grovertb/jquery.sparkline", 4 | "version": "2.1.3", 5 | "_release": "2.1.3", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "v2.1.3", 9 | "commit": "389a9a499cdcd29aa165d7b600c853bc4548c787" 10 | }, 11 | "_source": "https://github.com/grovertb/jquery.sparkline.git", 12 | "_target": "^2.1.3", 13 | "_originalSource": "sparklinejs" 14 | } -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore vim temp files 2 | .*.sw[a-z] 3 | *.un~ 4 | Session.vim 5 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/Makefile: -------------------------------------------------------------------------------- 1 | SRC_DIR = src 2 | DIST_DIR = dist 3 | COMPILER ?= `which uglifyjs` --no-copyright 4 | 5 | 6 | SRC_FILES = $(SRC_DIR)/header.js\ 7 | $(SRC_DIR)/defaults.js\ 8 | $(SRC_DIR)/utils.js\ 9 | $(SRC_DIR)/simpledraw.js\ 10 | $(SRC_DIR)/rangemap.js\ 11 | $(SRC_DIR)/interact.js\ 12 | $(SRC_DIR)/base.js\ 13 | $(SRC_DIR)/chart-line.js\ 14 | $(SRC_DIR)/chart-bar.js\ 15 | $(SRC_DIR)/chart-tristate.js\ 16 | $(SRC_DIR)/chart-discrete.js\ 17 | $(SRC_DIR)/chart-bullet.js\ 18 | $(SRC_DIR)/chart-pie.js\ 19 | $(SRC_DIR)/chart-box.js\ 20 | $(SRC_DIR)/vcanvas-base.js\ 21 | $(SRC_DIR)/vcanvas-canvas.js\ 22 | $(SRC_DIR)/vcanvas-vml.js\ 23 | $(SRC_DIR)/footer.js 24 | 25 | 26 | VERSION = $(shell cat version.txt) 27 | 28 | all: jqs-gzip jqs-min-gzip Changelog.txt 29 | cp Changelog.txt dist/ 30 | 31 | jqs: ${SRC_FILES} 32 | cat ${SRC_FILES} | sed 's/@VERSION@/${VERSION}/' >${DIST_DIR}/jquery.sparkline.js 33 | 34 | jqs-min: jqs 35 | cat minheader.txt | sed 's/@VERSION@/${VERSION}/' >dist/jquery.sparkline.min.js 36 | ${COMPILER} dist/jquery.sparkline.js >>dist/jquery.sparkline.min.js 37 | 38 | jqs-gzip: jqs 39 | gzip -9 < dist/jquery.sparkline.js >dist/jquery.sparkline.js.gz 40 | 41 | jqs-min-gzip: jqs-min 42 | gzip -9 < dist/jquery.sparkline.min.js >dist/jquery.sparkline.min.js.gz 43 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/README.md: -------------------------------------------------------------------------------- 1 | jQuery Sparklines 2 | ================= 3 | 4 | This jQuery plugin makes it easy to generate a number of different types 5 | of sparklines directly in the browser, using online a line of two of HTML 6 | and Javascript. 7 | 8 | The plugin has no dependencies other than jQuery and works with all modern 9 | browsers and also Internet Explorer 6 and later (excanvas is not required 10 | for IE support). 11 | 12 | See the [jQuery Sparkline project page](http://omnipotent.net/jquery.sparkline/) 13 | for live examples and documentation. 14 | 15 | ## License 16 | 17 | Released under the New BSD License 18 | 19 | (c) Splunk, Inc 2012 20 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/dist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/minheader.txt: -------------------------------------------------------------------------------- 1 | /* jquery.sparkline @VERSION@ - http://omnipotent.net/jquery.sparkline/ 2 | ** Licensed under the New BSD License - see above site for details */ 3 | 4 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/sparkline.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sparklinejs", 3 | "title": "jQuery Sparklinejs", 4 | "description": "Easily generate small, inline sparkline charts directly in the browser", 5 | "keywords": [ 6 | "canvas", 7 | "charts", 8 | "graphics", 9 | "graphing", 10 | "graphs", 11 | "sparklines", 12 | "ui", 13 | "vml", 14 | "grovertb" 15 | ], 16 | "version": "2.1.3", 17 | "author": { 18 | "name": "Gareth Watts", 19 | "url": "http://gwatts.com/" 20 | }, 21 | "licenses": [ 22 | { 23 | "type": "BSD-3-Clause", 24 | "url": "http://opensource.org/licenses/BSD-3-Clause" 25 | } 26 | ], 27 | "bugs": "https://github.com/gwatts/jquery.sparkline/issues", 28 | "homepage": "http://omnipotent.net/jquery.sparkline/", 29 | "demo": "http://omnipotent.net/jquery.sparkline/", 30 | "docs": "http://omnipotent.net/jquery.sparkline/#s-docs", 31 | "download": "http://omnipotent.net/jquery.sparkline/#s-download", 32 | "dependencies": { 33 | "jquery": ">=1.4.3" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/src/rangemap.js: -------------------------------------------------------------------------------- 1 | $.RangeMapClass = RangeMap = createClass({ 2 | init: function (map) { 3 | var key, range, rangelist = []; 4 | for (key in map) { 5 | if (map.hasOwnProperty(key) && typeof key === 'string' && key.indexOf(':') > -1) { 6 | range = key.split(':'); 7 | range[0] = range[0].length === 0 ? -Infinity : parseFloat(range[0]); 8 | range[1] = range[1].length === 0 ? Infinity : parseFloat(range[1]); 9 | range[2] = map[key]; 10 | rangelist.push(range); 11 | } 12 | } 13 | this.map = map; 14 | this.rangelist = rangelist || false; 15 | }, 16 | 17 | get: function (value) { 18 | var rangelist = this.rangelist, 19 | i, range, result; 20 | if ((result = this.map[value]) !== undefined) { 21 | return result; 22 | } 23 | if (rangelist) { 24 | for (i = rangelist.length; i--;) { 25 | range = rangelist[i]; 26 | if (range[0] <= value && range[1] >= value) { 27 | return range[2]; 28 | } 29 | } 30 | } 31 | return undefined; 32 | } 33 | }); 34 | 35 | // Convenience function 36 | $.range_map = function(map) { 37 | return new RangeMap(map); 38 | }; 39 | 40 | -------------------------------------------------------------------------------- /public/backend/lib/sparklinejs/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 2 | -------------------------------------------------------------------------------- /public/backend/lib/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/backend/lib/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/backend/lib/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/backend/lib/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/backend/lib/summernote/lang/summernote-ar-AR.min.js: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.8 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | 3 | !function(a){a.extend(a.summernote.lang,{"ar-AR":{font:{bold:"عريض",italic:"مائل",underline:"تحته خط",clear:"مسح التنسيق",height:"إرتفاع السطر",name:"الخط",strikethrough:"فى وسطه خط",size:"الحجم"},image:{image:"صورة",insert:"إضافة صورة",resizeFull:"الحجم بالكامل",resizeHalf:"تصغير للنصف",resizeQuarter:"تصغير للربع",floatLeft:"تطيير لليسار",floatRight:"تطيير لليمين",floatNone:"ثابته",dragImageHere:"إدرج الصورة هنا",selectFromFiles:"حدد ملف",url:"رابط الصورة",remove:"حذف الصورة"},video:{video:"فيديو",videoLink:"رابط الفيديو",insert:"إدراج الفيديو",url:"رابط الفيديو",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)"},link:{link:"رابط رابط",insert:"إدراج",unlink:"حذف الرابط",edit:"تعديل",textToDisplay:"النص",url:"مسار الرابط",openInNewWindow:"فتح في نافذة جديدة"},table:{table:"جدول"},hr:{insert:"إدراج خط أفقي"},style:{style:"تنسيق",p:"عادي",blockquote:"إقتباس",pre:"شفيرة",h1:"عنوان رئيسي 1",h2:"عنوان رئيسي 2",h3:"عنوان رئيسي 3",h4:"عنوان رئيسي 4",h5:"عنوان رئيسي 5",h6:"عنوان رئيسي 6"},lists:{unordered:"قائمة مُنقطة",ordered:"قائمة مُرقمة"},options:{help:"مساعدة",fullscreen:"حجم الشاشة بالكامل",codeview:"شفيرة المصدر"},paragraph:{paragraph:"فقرة",outdent:"محاذاة للخارج",indent:"محاذاة للداخل",left:"محاذاة لليسار",center:"توسيط",right:"محاذاة لليمين",justify:"ملئ السطر"},color:{recent:"تم إستخدامه",more:"المزيد",background:"لون الخلفية",foreground:"لون النص",transparent:"شفاف",setTransparent:"بدون خلفية",reset:"إعادة الضبط",resetToDefault:"إعادة الضبط"},shortcut:{shortcuts:"إختصارات",close:"غلق",textFormatting:"تنسيق النص",action:"Action",paragraphFormatting:"تنسيق الفقرة",documentStyle:"تنسيق المستند"},history:{undo:"تراجع",redo:"إعادة"}}})}(jQuery); -------------------------------------------------------------------------------- /public/backend/lib/summernote/lang/summernote-he-IL.min.js: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.8 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | 3 | !function(a){a.extend(a.summernote.lang,{"he-IL":{font:{bold:"מודגש",italic:"נטוי",underline:"קו תחתון",clear:"נקה עיצוב",height:"גובה",name:"גופן",strikethrough:"קו חוצה",subscript:"כתב תחתי",superscript:"כתב עילי",size:"גודל גופן"},image:{image:"תמונה",insert:"הוסף תמונה",resizeFull:"גודל מלא",resizeHalf:"להקטין לחצי",resizeQuarter:"להקטין לרבע",floatLeft:"יישור לשמאל",floatRight:"יישור לימין",floatNone:"ישר",dragImageHere:"גרור תמונה לכאן",selectFromFiles:"בחר מתוך קבצים",url:"נתיב לתמונה",remove:"הסר תמונה"},video:{video:"סרטון",videoLink:"קישור לסרטון",insert:"הוסף סרטון",url:"קישור לסרטון",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion או Youku)"},link:{link:"קישור",insert:"הוסף קישור",unlink:"הסר קישור",edit:"ערוך",textToDisplay:"טקסט להציג",url:"קישור",openInNewWindow:"פתח בחלון חדש"},table:{table:"טבלה"},hr:{insert:"הוסף קו"},style:{style:"עיצוב",p:"טקסט רגיל",blockquote:"ציטוט",pre:"קוד",h1:"כותרת 1",h2:"כותרת 2",h3:"כותרת 3",h4:"כותרת 4",h5:"כותרת 5",h6:"כותרת 6"},lists:{unordered:"רשימת תבליטים",ordered:"רשימה ממוספרת"},options:{help:"עזרה",fullscreen:"מסך מלא",codeview:"תצוגת קוד"},paragraph:{paragraph:"פסקה",outdent:"הקטן כניסה",indent:"הגדל כניסה",left:"יישור לשמאל",center:"יישור למרכז",right:"יישור לימין",justify:"מיושר"},color:{recent:"צבע טקסט אחרון",more:"עוד צבעים",background:"צבע רקע",foreground:"צבע טקסט",transparent:"שקוף",setTransparent:"קבע כשקוף",reset:"איפוס",resetToDefault:"אפס לברירת מחדל"},shortcut:{shortcuts:"קיצורי מקלדת",close:"סגור",textFormatting:"עיצוב הטקסט",action:"פעולה",paragraphFormatting:"סגנונות פסקה",documentStyle:"עיצוב המסמך",extraKeys:"קיצורים נוספים"},history:{undo:"בטל פעולה",redo:"בצע שוב"}}})}(jQuery); -------------------------------------------------------------------------------- /public/backend/lib/summernote/lang/summernote-ko-KR.min.js: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.8 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | 3 | !function(a){a.extend(a.summernote.lang,{"ko-KR":{font:{bold:"굵게",italic:"기울임꼴",underline:"밑줄",clear:"글자 효과 없애기",height:"줄간격",name:"글꼴",superscript:"위 첨자",subscript:"아래 첨자",strikethrough:"취소선",size:"글자 크기"},image:{image:"사진",insert:"사진 추가",resizeFull:"100% 크기로 변경",resizeHalf:"50% 크기로 변경",resizeQuarter:"25% 크기로 변경",floatLeft:"왼쪽 정렬",floatRight:"오른쪽 정렬",floatNone:"정렬하지 않음",shapeRounded:"스타일: 둥근 모서리",shapeCircle:"스타일: 원형",shapeThumbnail:"스타일: 액자",shapeNone:"스타일: 없음",dragImageHere:"텍스트 혹은 사진을 이곳으로 끌어오세요",dropImage:"텍스트 혹은 사진을 내려놓으세요",selectFromFiles:"파일 선택",url:"사진 URL",remove:"사진 삭제"},video:{video:"동영상",videoLink:"동영상 링크",insert:"동영상 추가",url:"동영상 URL",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku 사용 가능)"},link:{link:"링크",insert:"링크 추가",unlink:"링크 삭제",edit:"수정",textToDisplay:"링크에 표시할 내용",url:"이동할 URL",openInNewWindow:"새창으로 열기"},table:{table:"테이블"},hr:{insert:"구분선 추가"},style:{style:"스타일",p:"본문",blockquote:"인용구",pre:"코드",h1:"제목 1",h2:"제목 2",h3:"제목 3",h4:"제목 4",h5:"제목 5",h6:"제목 6"},lists:{unordered:"글머리 기호",ordered:"번호 매기기"},options:{help:"도움말",fullscreen:"전체 화면",codeview:"코드 보기"},paragraph:{paragraph:"문단 정렬",outdent:"내어쓰기",indent:"들여쓰기",left:"왼쪽 정렬",center:"가운데 정렬",right:"오른쪽 정렬",justify:"양쪽 정렬"},color:{recent:"마지막으로 사용한 색",more:"다른 색 선택",background:"배경색",foreground:"글자색",transparent:"투명",setTransparent:"투명",reset:"취소",resetToDefault:"기본 값으로 변경"},shortcut:{shortcuts:"키보드 단축키",close:"닫기",textFormatting:"글자 스타일 적용",action:"기능",paragraphFormatting:"문단 스타일 적용",documentStyle:"문서 스타일 적용"},history:{undo:"실행 취소",redo:"다시 실행"},specialChar:{specialChar:"특수문자",select:"특수문자를 선택하세요"}}})}(jQuery); -------------------------------------------------------------------------------- /public/backend/lib/summernote/lang/summernote-vi-VN.min.js: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.8 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | 3 | !function(a){a.extend(a.summernote.lang,{"vi-VN":{font:{bold:"In Đậm",italic:"In Nghiêng",underline:"Gạch dưới",clear:"Bỏ định dạng",height:"Chiều cao dòng",name:"Phông chữ",strikethrough:"Gạch ngang",size:"Cỡ chữ"},image:{image:"Hình ảnh",insert:"Chèn",resizeFull:"100%",resizeHalf:"50%",resizeQuarter:"25%",floatLeft:"Trôi về trái",floatRight:"Trôi về phải",floatNone:"Không trôi",dragImageHere:"Thả Ảnh ở vùng này",selectFromFiles:"Chọn từ File",url:"URL",remove:"Xóa"},video:{video:"Video",videoLink:"Link đến Video",insert:"Chèn Video",url:"URL",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion và Youku)"},link:{link:"Link",insert:"Chèn Link",unlink:"Gỡ Link",edit:"Sửa",textToDisplay:"Văn bản hiển thị",url:"URL",openInNewWindow:"Mở ở Cửa sổ mới"},table:{table:"Bảng"},hr:{insert:"Chèn"},style:{style:"Kiểu chữ",p:"Chữ thường",blockquote:"Đoạn trích",pre:"Mã Code",h1:"H1",h2:"H2",h3:"H3",h4:"H4",h5:"H5",h6:"H6"},lists:{unordered:"Liệt kê danh sách",ordered:"Liệt kê theo thứ tự"},options:{help:"Trợ giúp",fullscreen:"Toàn Màn hình",codeview:"Xem Code"},paragraph:{paragraph:"Canh lề",outdent:"Dịch sang trái",indent:"Dịch sang phải",left:"Canh trái",center:"Canh giữa",right:"Canh phải",justify:"Canh đều"},color:{recent:"Màu chữ",more:"Mở rộng",background:"Màu nền",foreground:"Màu chữ",transparent:"trong suốt",setTransparent:"Nền trong suốt",reset:"Thiết lập lại",resetToDefault:"Trở lại ban đầu"},shortcut:{shortcuts:"Phím tắt",close:"Đóng",textFormatting:"Định dạng Văn bản",action:"Hành động",paragraphFormatting:"Định dạng",documentStyle:"Kiểu văn bản"},history:{undo:"Lùi lại",redo:"Làm lại"}}})}(jQuery); -------------------------------------------------------------------------------- /public/backend/lib/summernote/lang/summernote-zh-TW.min.js: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.8 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | 3 | !function(a){a.extend(a.summernote.lang,{"zh-TW":{font:{bold:"粗體",italic:"斜體",underline:"底線",clear:"清除格式",height:"行高",name:"字體",strikethrough:"刪除線",subscript:"下標",superscript:"上標",size:"字號"},image:{image:"圖片",insert:"插入圖片",resizeFull:"縮放至100%",resizeHalf:"縮放至 50%",resizeQuarter:"縮放至 25%",floatLeft:"靠左浮動",floatRight:"靠右浮動",floatNone:"取消浮動",shapeRounded:"形狀: 圓角",shapeCircle:"形狀: 圓",shapeThumbnail:"形狀: 縮略圖",shapeNone:"形狀: 無",dragImageHere:"將圖片拖曳至此處",selectFromFiles:"從本機上傳",maximumFileSize:"文件大小最大值",maximumFileSizeError:"文件大小超出最大值。",url:"圖片網址",remove:"移除圖片"},video:{video:"影片",videoLink:"影片連結",insert:"插入影片",url:"影片網址",providers:"(優酷, Instagram, DailyMotion, Youtube等)"},link:{link:"連結",insert:"插入連結",unlink:"取消連結",edit:"編輯連結",textToDisplay:"顯示文字",url:"連結網址",openInNewWindow:"在新視窗開啟"},table:{table:"表格"},hr:{insert:"水平線"},style:{style:"樣式",p:"一般",blockquote:"引用區塊",pre:"程式碼區塊",h1:"標題 1",h2:"標題 2",h3:"標題 3",h4:"標題 4",h5:"標題 5",h6:"標題 6"},lists:{unordered:"項目清單",ordered:"編號清單"},options:{help:"幫助",fullscreen:"全螢幕",codeview:"原始碼"},paragraph:{paragraph:"段落",outdent:"取消縮排",indent:"增加縮排",left:"靠右對齊",center:"靠中對齊",right:"靠右對齊",justify:"左右對齊"},color:{recent:"字型顏色",more:"更多",background:"背景",foreground:"前景",transparent:"透明",setTransparent:"透明",reset:"重設",resetToDefault:"默認"},shortcut:{shortcuts:"快捷鍵",close:"關閉",textFormatting:"文字格式",action:"動作",paragraphFormatting:"段落格式",documentStyle:"文件格式",extraKeys:"額外按鍵"},history:{undo:"復原",redo:"取消復原"}}})}(jQuery); -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------ */ 2 | /* ############### 3.1 Alerts ############### */ 3 | /* ------------------------------------------ */ 4 | 5 | // Base Alerts 6 | .alert-success { 7 | @include alert-variant(lighten($brand-success, 45%), $brand-success, darken($brand-success, 8%)); 8 | } 9 | 10 | .alert-info { 11 | @include alert-variant(lighten($brand-info, 30%), $brand-info, darken($brand-info, 8%)); 12 | } 13 | 14 | .alert-warning { 15 | @include alert-variant(lighten($brand-warning, 36%), $brand-warning, darken($brand-warning, 12%)); 16 | } 17 | 18 | .alert-danger { 19 | @include alert-variant(lighten($brand-danger, 36%), $brand-danger, darken($brand-danger, 12%)); 20 | } 21 | 22 | .alert { 23 | border-width: 0; 24 | border-radius: 0; 25 | padding: 15px 20px; 26 | position: relative; 27 | 28 | .close { opacity: .25; } 29 | } 30 | 31 | .alert-icon { 32 | opacity: .95; 33 | line-height: 0; 34 | margin-right: 10px; 35 | position: relative; 36 | } 37 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------- */ 2 | /* ############### 3.2 Buttons ############### */ 3 | /* ------------------------------------------- */ 4 | 5 | .btn { 6 | border-radius: 0; 7 | &.rounded-circle { @include border-radius(100%); } 8 | } 9 | .btn:active { box-shadow: none; } 10 | 11 | .btn-indigo { @include button-variant($indigo, darken($indigo, 5%)); } 12 | .btn-purple { @include button-variant($purple, darken($purple, 5%)); } 13 | .btn-pink { @include button-variant($pink, darken($pink, 5%)); } 14 | .btn-teal { @include button-variant($teal, darken($teal, 5%)); } 15 | 16 | .btn-outline-light { @include button-outline-variant($gray-500, #fff); } 17 | .btn-outline-indigo { @include button-outline-variant($indigo, #fff); } 18 | .btn-outline-purple { @include button-outline-variant($purple, #fff); } 19 | .btn-outline-pink { @include button-outline-variant($pink, #fff); } 20 | .btn-outline-teal { @include button-outline-variant($teal, #fff); } 21 | 22 | .btn-warning { color: #fff !important; } 23 | 24 | .btn-oblong { @include border-radius(50px); } 25 | 26 | .btn-with-icon { 27 | padding: 0; 28 | display: inline-block; 29 | border-width: 0; 30 | 31 | > div { 32 | position: relative; 33 | display: flex; 34 | 35 | > span { 36 | display: flex; 37 | height: 100%; 38 | align-items: center; 39 | 40 | &.icon { 41 | justify-content: center; 42 | background-color: rgba(#000, 0.2); 43 | } 44 | } 45 | } 46 | } 47 | 48 | .btn-icon { 49 | display: inline-block; 50 | padding: 0; 51 | 52 | > div { 53 | display: flex; 54 | width: 35px; 55 | height: 35px; 56 | align-items: center; 57 | justify-content: center; 58 | } 59 | } 60 | 61 | .btn-group { direction: ltr; } 62 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------- */ 2 | /* ############### 3.8 Forms ############### */ 3 | /* ----------------------------------------- */ 4 | 5 | .form-control { 6 | border-radius: 0; 7 | } 8 | 9 | /* #################### VALIDATION #################### */ 10 | 11 | .is-valid, 12 | .is-invalid { 13 | &:focus, 14 | &:active { box-shadow: none !important; } 15 | } 16 | 17 | .is-warning { 18 | &,&:focus,&:active { 19 | border-color: $brand-warning; 20 | } 21 | } 22 | 23 | 24 | /* #################### INPUT FORM STYLES #################### */ 25 | 26 | .fc-outline, 27 | .fc-outline-dark { 28 | &,&:focus,&:active { background-color: transparent; } 29 | } 30 | 31 | .fc-outline { 32 | &:focus, 33 | &:active { border-color: $gray-500; } 34 | } 35 | 36 | .fc-outline-dark { 37 | border-color: rgba(#fff,0.3); 38 | color: #fff; 39 | 40 | &:focus, 41 | &:active { 42 | border-color: rgba(#fff,0.75); 43 | color: rgba(#fff,0.75); 44 | } 45 | } 46 | 47 | .fc-focus-primary { &:focus,&:active { border-color: $brand-primary; }} 48 | .fc-focus-success { &:focus,&:active { border-color: $brand-success; }} 49 | .fc-focus-warning { &:focus,&:active { border-color: $brand-warning; }} 50 | .fc-focus-danger { &:focus,&:active { border-color: $brand-danger; }} 51 | .fc-focus-info { &:focus,&:active { border-color: $brand-info; }} 52 | .fc-focus-indigo { &:focus,&:active { border-color: $indigo; }} 53 | .fc-focus-purple { &:focus,&:active { border-color: $purple; }} 54 | .fc-focus-teal { &:focus,&:active { border-color: $teal; }} 55 | .fc-focus-pink { &:focus,&:active { border-color: $pink; }} 56 | .fc-focus-orange { &:focus,&:active { border-color: $orange; }} 57 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------ */ 2 | /* ############### 3.9 Modals ############### */ 3 | /* ------------------------------------------ */ 4 | 5 | .modal { 6 | text-align: center; 7 | padding: 0 !important; 8 | 9 | &::before { 10 | content: ''; 11 | display: inline-block; 12 | height: 100%; 13 | vertical-align: middle; 14 | margin-right: -4px; 15 | } 16 | 17 | .modal-dialog { 18 | display: inline-block; 19 | text-align: left; 20 | vertical-align: middle; 21 | } 22 | 23 | .modal-header, 24 | .modal-footer { border: 0; } 25 | 26 | .modal-content { 27 | border-radius: 0; 28 | border: 0; 29 | } 30 | .modal-body { background-color: $gray-100; } 31 | } 32 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------- */ 2 | /* ############### 3.10 Navigation ############### */ 3 | /* ----------------------------------------------- */ 4 | 5 | // Nav 6 | .nav-tabs { 7 | .nav-link { border-radius: 0; } 8 | } 9 | 10 | .nav-tabs-for-dark { 11 | .nav-link { 12 | color: rgba(#fff, .8); 13 | &.active { border-color: transparent; } 14 | 15 | &:hover, 16 | &:focus { color: #fff; } 17 | } 18 | } 19 | 20 | 21 | // Nav Custom Color 22 | .nav-gray-600 { @include nav-color-variant($gray-600, $gray-800); } 23 | .nav-gray-700 { @include nav-color-variant($gray-700, $gray-900); } 24 | .nav-white-800 { @include nav-color-variant(rgba(#fff, .8), #fff); } 25 | 26 | .nav-pills { 27 | @include nav-color-variant($gray-700, $gray-800, #fff, transparent, $brand-info); 28 | 29 | .nav-link { border-radius: 0; } 30 | } 31 | 32 | .nav-pills-for-dark { @include nav-color-variant(rgba(#fff,.7), #fff, #fff, transparent, $brand-info); } 33 | 34 | .nav.active-primary .nav-link.active { color: $brand-primary; } 35 | .nav.active-success .nav-link.active { color: $brand-success; } 36 | .nav.active-warning .nav-link.active { color: $brand-warning; } 37 | .nav.active-danger .nav-link.active { color: $brand-danger; } 38 | .nav.active-info .nav-link.active { color: $brand-info; } 39 | .nav.active-indigo .nav-link.active { color: $indigo; } 40 | .nav.active-purple .nav-link.active { color: $purple; } 41 | .nav.active-pink .nav-link.active { color: $pink; } 42 | .nav.active-teal .nav-link.active { color: $teal; } 43 | .nav.active-orange .nav-link.active { color: $orange; } 44 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------- */ 2 | /* ############### 3.12 Popover ############### */ 3 | /* -------------------------------------------- */ 4 | 5 | .popover { 6 | font-size: 12px; 7 | padding: 0; 8 | @include border-radius(0); 9 | } 10 | 11 | .popover-header { 12 | text-transform: uppercase; 13 | font-size: 12px; 14 | color: $gray-800; 15 | letter-spacing: 0.5px; 16 | padding: 12px 15px; 17 | background-color: #fff; 18 | border-color: $gray-300; 19 | @include border-top-radius(2px); 20 | 21 | &::before { display: none !important; } 22 | } 23 | 24 | .popover-body { 25 | padding: 15px; 26 | 27 | p:last-child { margin-bottom: 0;} 28 | } 29 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- 1 | /* --------------------------------------------- */ 2 | /* ############### 3.13 Progress ############### */ 3 | /* --------------------------------------------- */ 4 | 5 | .progress, 6 | .progress-bar { 7 | border-radius: 0; 8 | } 9 | 10 | .progress-bar { 11 | height: 15px; 12 | font-size: 11px; 13 | } 14 | 15 | .progress-bar-xs { height: 5px; } 16 | .progress-bar-sm { height: 10px; } 17 | .progress-bar-lg { height: 20px; } 18 | -------------------------------------------------------------------------------- /public/backend/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------- */ 2 | /* ############### 3.15 Toltips ############### */ 3 | /* -------------------------------------------- */ 4 | 5 | .tooltip-inner { 6 | padding: 8px 15px; 7 | font-size: 13px; 8 | @include border-radius(0); 9 | } 10 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_chartist.scss: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------- */ 2 | /* ############### 4.1 Chartist ############### */ 3 | /* -------------------------------------------- */ 4 | 5 | // Variables 6 | $color-a: #ED1E79; 7 | $color-b: #93268F; 8 | $color-c: #818AC3; 9 | $color-d: #0082CD; 10 | $color-e: #EC7A9C; 11 | 12 | // Mixins 13 | @mixin set-series-color($color) { 14 | .ct-point, 15 | .ct-line, 16 | .ct-bar, 17 | .ct-slice-donut { 18 | stroke: $color; 19 | } 20 | 21 | .ct-slice-pie, 22 | .ct-slice-donut-solid { 23 | fill: $color; 24 | stroke: #fff; 25 | } 26 | } 27 | 28 | // Styles 29 | .br-chartist { 30 | .ct-label { font-size: 11px; } 31 | .ct-line { stroke-width: 1px; } 32 | .ct-point { stroke-width: 8px; } 33 | 34 | .ct-chart-pie, 35 | .ct-chart-donut { 36 | .ct-label { 37 | font-size: 16px; 38 | fill: rgba(#fff, 0.75); 39 | } 40 | } 41 | } 42 | 43 | .br-chartist { 44 | .ct-series-a { @include set-series-color($color-a); } 45 | .ct-series-b { @include set-series-color($color-b); } 46 | .ct-series-c { @include set-series-color($color-c); } 47 | .ct-series-d { @include set-series-color($color-d); } 48 | .ct-series-e { @include set-series-color($color-e); } 49 | } 50 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_codemirror.scss: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------- */ 2 | /* ############### 4.2 Codemirror ############### */ 3 | /* ---------------------------------------------- */ 4 | 5 | .CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div { 6 | border: 0; 7 | @include border-radius(0); 8 | } 9 | 10 | .cmHeight100p .CodeMirror { height: 100%; } 11 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_flot.scss: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------- */ 2 | /* ############### 4.4 Flot ############### */ 3 | /* ---------------------------------------- */ 4 | 5 | .tooltipflot { 6 | background-color: #000; 7 | font-size: 11px; 8 | padding: 5px 10px; 9 | color: rgba(#fff,.7); 10 | @include border-radius(2px); 11 | } 12 | 13 | .legendColorBox > div { 14 | border: 0 !important; 15 | padding: 0 !important; 16 | } 17 | 18 | .legendLabel { 19 | font-size: 11px; 20 | padding-left: 5px; 21 | } 22 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_medium-editor.scss: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------- */ 2 | /* ############### 4.10 Medium Editor ############### */ 3 | /* -------------------------------------------------- */ 4 | 5 | .medium-editor-element { 6 | p:last-child { margin-bottom: 0; } 7 | } 8 | 9 | .medium-editor-toolbar { 10 | background-image: none; 11 | background-color: transparent; 12 | border: 0; 13 | box-shadow: none; 14 | 15 | li { 16 | button { 17 | background-color: $sl-primary; 18 | background-image: none; 19 | box-shadow: none; 20 | border-right: 0; 21 | 22 | &:hover, 23 | &:focus { 24 | background-color: darken($sl-primary, 2%); 25 | color: $brand-info; 26 | } 27 | } 28 | 29 | .medium-editor-button-first { 30 | border-top-left-radius: 3px; 31 | border-bottom-left-radius: 3px; 32 | border-left: 0; 33 | } 34 | 35 | .medium-editor-button-last { 36 | border-top-right-radius: 3px; 37 | border-bottom-right-radius: 3px; 38 | } 39 | 40 | .medium-editor-button-active { 41 | background-image: none; 42 | background-color: darken($sl-primary, 2%); 43 | color: $brand-info; 44 | } 45 | } 46 | } 47 | 48 | .medium-toolbar-arrow-under::after { 49 | border-top-color: $sl-primary; 50 | } 51 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | // Select2 Skins 3 | @mixin select2-outline-color($color) { 4 | border-color: $color; 5 | background-color: transparent; 6 | 7 | .select2-selection__rendered { color: $color; } 8 | .select2-selection__arrow b { border-top-color: $color; } 9 | } 10 | 11 | // Ion Rangeslider Skins 12 | @mixin irs-color-variant($color) { 13 | .irs-bar, 14 | .irs-bar-edge, 15 | .irs-slider::before { background-color: $color; } 16 | 17 | .irs-from, 18 | .irs-to, 19 | .irs-single { 20 | background-color: $color; 21 | &::after { border-top-color: $color; } 22 | } 23 | } 24 | 25 | @mixin irs-modern-slider-variant($color) { 26 | .irs-slider { 27 | border-color: $color; 28 | &::before { border-color: $color; } 29 | } 30 | } 31 | 32 | @mixin irs-outline-variant($color) { 33 | .irs-line, 34 | .irs-slider { 35 | border-color: $color; 36 | &:hover, 37 | &:focus { 38 | &::before { background-color: darken($color, 5%); } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_morris.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------- */ 2 | /* ############### 4.11 Morris ############### */ 3 | /* ------------------------------------------- */ 4 | 5 | .morris-hover.morris-default-style { 6 | @include border-radius(); 7 | border-width: 1px; 8 | } 9 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_perfect-scrollbar.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------ */ 2 | /* ############### 4.13 Perfect Scrollbar ############### */ 3 | /* ------------------------------------------------------ */ 4 | 5 | .ps { 6 | > .ps__scrollbar-y-rail { 7 | width: 7px; 8 | > .ps__scrollbar-y { width: 3px; } 9 | 10 | &:hover, 11 | &:active { 12 | > .ps__scrollbar-y { width: 3px; } 13 | } 14 | } 15 | 16 | &:hover { 17 | > .ps__scrollbar-y-rail:hover { background-color: transparent; } 18 | &.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y { width: 7px; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_rickshaw.scss: -------------------------------------------------------------------------------- 1 | /* --------------------------------------------- */ 2 | /* ############### 4.14 Rickshaw ############### */ 3 | /* --------------------------------------------- */ 4 | 5 | .rickshaw_graph { 6 | svg:not(:root) { overflow: visible; } 7 | svg { 8 | overflow-y: visible; 9 | overflow-x: hidden; 10 | .y_grid { 11 | .tick { 12 | text { display: none; } 13 | } 14 | } 15 | } 16 | 17 | .y_ticks text { font-size: 11px; } 18 | } 19 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_sparkline.scss: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------- */ 2 | /* ############### 4.16 Sparkline ############### */ 3 | /* ---------------------------------------------- */ 4 | .jqstooltip { 5 | -webkit-box-sizing: content-box; 6 | -moz-box-sizing: content-box; 7 | box-sizing: content-box; 8 | border: 0 !important; 9 | @include border-radius(2px); 10 | } 11 | -------------------------------------------------------------------------------- /public/backend/scss/lib/_tagsinput.scss: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------- */ 2 | /* ############### 4.20 TagsInput ############### */ 3 | /* ---------------------------------------------- */ 4 | 5 | .bootstrap-tagsinput { 6 | border-color: $input-border-color; 7 | -webkit-box-shadow: none; 8 | box-shadow: none; 9 | padding: 0 6px 5px; 10 | min-height: 40px; 11 | display: block; 12 | @include border-radius(); 13 | 14 | .label { 15 | background-color: $brand-info; 16 | color: #fff; 17 | font-size: $font-size-sm; 18 | padding: 2px 8px; 19 | margin-top: 6px; 20 | display: inline-block; 21 | @include border-radius(2px); 22 | } 23 | 24 | input { padding-top: 8px; } 25 | 26 | .tag [data-role="remove"] { 27 | opacity: .75; 28 | 29 | &::after { 30 | content: '\f2d7'; 31 | font-family: 'Ionicons'; 32 | font-size: 11px; 33 | } 34 | 35 | &:hover, 36 | &:focus, 37 | &:active { 38 | opacity: 1; 39 | box-shadow: none; 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /public/backend/scss/util/_hover.scss: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------- */ 2 | /* ############### 7.4 Hover ############### */ 3 | /* ----------------------------------------- */ 4 | 5 | // Hover for colored anchor 6 | a.tx-success { @include hover-color(darken($brand-success, 5%)); } 7 | a.tx-warning { @include hover-color(darken($brand-warning, 5%)); } 8 | a.tx-danger { @include hover-color(darken($brand-danger, 5%)); } 9 | a.tx-info { @include hover-color(darken($brand-info, 5%)); } 10 | 11 | // Hover property to anchor 12 | a.hover-gray-700 { @include hover-color($gray-700); } 13 | a.hover-primary { @include hover-color($brand-primary); } 14 | a.hover-success { @include hover-color($brand-success); } 15 | a.hover-info { @include hover-color($brand-info); } 16 | a.hover-white { @include hover-color(#fff); } 17 | a.hover-dark { @include hover-color($gray-900); } 18 | 19 | // white half transparency 20 | a.hover-white-8 { @include hover-color(rgba(#fff, .8)); } 21 | -------------------------------------------------------------------------------- /public/frontend/images/adv_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/adv_1.png -------------------------------------------------------------------------------- /public/frontend/images/adv_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/adv_2.png -------------------------------------------------------------------------------- /public/frontend/images/adv_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/adv_3.png -------------------------------------------------------------------------------- /public/frontend/images/banner_2_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/banner_2_background.jpg -------------------------------------------------------------------------------- /public/frontend/images/banner_2_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/banner_2_product.png -------------------------------------------------------------------------------- /public/frontend/images/banner_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/banner_background.jpg -------------------------------------------------------------------------------- /public/frontend/images/banner_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/banner_product.png -------------------------------------------------------------------------------- /public/frontend/images/best_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_1.png -------------------------------------------------------------------------------- /public/frontend/images/best_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_2.png -------------------------------------------------------------------------------- /public/frontend/images/best_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_3.png -------------------------------------------------------------------------------- /public/frontend/images/best_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_4.png -------------------------------------------------------------------------------- /public/frontend/images/best_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_5.png -------------------------------------------------------------------------------- /public/frontend/images/best_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/best_6.png -------------------------------------------------------------------------------- /public/frontend/images/blog_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_4.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_5.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_6.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_7.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_8.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/blog_9.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_4.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_5.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_6.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_7.jpg -------------------------------------------------------------------------------- /public/frontend/images/brands_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/brands_8.jpg -------------------------------------------------------------------------------- /public/frontend/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/cart.png -------------------------------------------------------------------------------- /public/frontend/images/char_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/char_1.png -------------------------------------------------------------------------------- /public/frontend/images/char_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/char_2.png -------------------------------------------------------------------------------- /public/frontend/images/char_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/char_3.png -------------------------------------------------------------------------------- /public/frontend/images/char_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/char_4.png -------------------------------------------------------------------------------- /public/frontend/images/contact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/contact_1.png -------------------------------------------------------------------------------- /public/frontend/images/contact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/contact_2.png -------------------------------------------------------------------------------- /public/frontend/images/contact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/contact_3.png -------------------------------------------------------------------------------- /public/frontend/images/deals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/deals.png -------------------------------------------------------------------------------- /public/frontend/images/featured_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_1.png -------------------------------------------------------------------------------- /public/frontend/images/featured_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_2.png -------------------------------------------------------------------------------- /public/frontend/images/featured_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_3.png -------------------------------------------------------------------------------- /public/frontend/images/featured_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_4.png -------------------------------------------------------------------------------- /public/frontend/images/featured_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_5.png -------------------------------------------------------------------------------- /public/frontend/images/featured_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_6.png -------------------------------------------------------------------------------- /public/frontend/images/featured_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_7.png -------------------------------------------------------------------------------- /public/frontend/images/featured_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/featured_8.png -------------------------------------------------------------------------------- /public/frontend/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/heart.png -------------------------------------------------------------------------------- /public/frontend/images/logos_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/logos_1.png -------------------------------------------------------------------------------- /public/frontend/images/logos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/logos_2.png -------------------------------------------------------------------------------- /public/frontend/images/logos_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/logos_3.png -------------------------------------------------------------------------------- /public/frontend/images/logos_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/logos_4.png -------------------------------------------------------------------------------- /public/frontend/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/mail.png -------------------------------------------------------------------------------- /public/frontend/images/mail_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/mail_white.png -------------------------------------------------------------------------------- /public/frontend/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/mastercard.png -------------------------------------------------------------------------------- /public/frontend/images/mollie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/mollie.png -------------------------------------------------------------------------------- /public/frontend/images/new_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_4.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_5.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_6.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_7.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_8.jpg -------------------------------------------------------------------------------- /public/frontend/images/new_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/new_single.png -------------------------------------------------------------------------------- /public/frontend/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/paypal.png -------------------------------------------------------------------------------- /public/frontend/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/phone.png -------------------------------------------------------------------------------- /public/frontend/images/phone_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/phone_white.png -------------------------------------------------------------------------------- /public/frontend/images/popular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/popular_1.png -------------------------------------------------------------------------------- /public/frontend/images/popular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/popular_2.png -------------------------------------------------------------------------------- /public/frontend/images/popular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/popular_3.png -------------------------------------------------------------------------------- /public/frontend/images/popular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/popular_4.png -------------------------------------------------------------------------------- /public/frontend/images/popular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/popular_5.png -------------------------------------------------------------------------------- /public/frontend/images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/quote.png -------------------------------------------------------------------------------- /public/frontend/images/review_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/review_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/review_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/review_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/review_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/review_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/search.png -------------------------------------------------------------------------------- /public/frontend/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/send.png -------------------------------------------------------------------------------- /public/frontend/images/shop_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/shop_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/shop_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/shop_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/shop_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/shop_background.jpg -------------------------------------------------------------------------------- /public/frontend/images/shopping_cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/shopping_cart.jpg -------------------------------------------------------------------------------- /public/frontend/images/single_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/single_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/single_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/single_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/single_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/single_4.jpg -------------------------------------------------------------------------------- /public/frontend/images/trends_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/trends_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/trends_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/trends_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/trends_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/trends_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/trends_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/trends_background.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_2.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_3.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_4.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_5.jpg -------------------------------------------------------------------------------- /public/frontend/images/view_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/images/view_6.jpg -------------------------------------------------------------------------------- /public/frontend/js/product_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/js/product_custom.js -------------------------------------------------------------------------------- /public/frontend/js/shop_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/js/shop_custom.js -------------------------------------------------------------------------------- /public/frontend/plugins/Isotope/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/Isotope/isotope.pkgd.min.js -------------------------------------------------------------------------------- /public/frontend/plugins/OwlCarousel2-2.2.1/owl.theme.default.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | /* 7 | * Default theme - Owl Carousel CSS File 8 | */ 9 | .owl-theme .owl-nav 10 | { 11 | margin-top: 10px; 12 | text-align: center; 13 | -webkit-tap-highlight-color: transparent; 14 | z-index: 10000; 15 | background: red; 16 | } 17 | .owl-theme .owl-nav [class*='owl-'] 18 | { 19 | color: #FFF; 20 | font-size: 14px; 21 | margin: 5px; 22 | padding: 4px 7px; 23 | background: #D6D6D6; 24 | display: inline-block; 25 | cursor: pointer; 26 | border-radius: 3px; 27 | } 28 | .owl-theme .owl-nav [class*='owl-']:hover 29 | { 30 | background: #869791; 31 | color: #FFF; 32 | text-decoration: none; 33 | } 34 | .owl-theme .owl-nav .disabled 35 | { 36 | opacity: 0.5; 37 | cursor: default; 38 | } 39 | 40 | .owl-theme .owl-nav.disabled + .owl-dots 41 | { 42 | margin-top: 10px; 43 | } 44 | 45 | .owl-theme .owl-dots 46 | { 47 | text-align: center; 48 | -webkit-tap-highlight-color: transparent; 49 | } 50 | .owl-theme .owl-dots .owl-dot 51 | { 52 | display: inline-block; 53 | zoom: 1; 54 | *display: inline; 55 | } 56 | .owl-theme .owl-dots .owl-dot span 57 | { 58 | width: 10px; 59 | height: 10px; 60 | margin: 5px 7px; 61 | background: #CFCFD0; 62 | display: block; 63 | -webkit-backface-visibility: visible; 64 | transition: opacity 200ms ease; 65 | border-radius: 30px; 66 | } 67 | .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span 68 | { 69 | background: #A19799; 70 | } 71 | 72 | -------------------------------------------------------------------------------- /public/frontend/plugins/OwlCarousel2-2.2.1/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/OwlCarousel2-2.2.1/owl.video.play.png -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/fontawesome-free-5.0.1/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/frontend/plugins/greensock/animation.gsap.min.js: -------------------------------------------------------------------------------- 1 | /*! ScrollMagic v2.0.5 | (c) 2015 Jan Paepke (@janpaepke) | license & info: http://scrollmagic.io */ 2 | !function(e,n){"function"==typeof define&&define.amd?define(["ScrollMagic","TweenMax","TimelineMax"],n):"object"==typeof exports?(require("gsap"),n(require("scrollmagic"),TweenMax,TimelineMax)):n(e.ScrollMagic||e.jQuery&&e.jQuery.ScrollMagic,e.TweenMax||e.TweenLite,e.TimelineMax||e.TimelineLite)}(this,function(e,n,r){"use strict";e.Scene.addOption("tweenChanges",!1,function(e){return!!e}),e.Scene.extend(function(){var e,t=this;t.on("progress.plugin_gsap",function(){i()}),t.on("destroy.plugin_gsap",function(e){t.removeTween(e.reset)});var i=function(){if(e){var n=t.progress(),r=t.state();e.repeat&&-1===e.repeat()?"DURING"===r&&e.paused()?e.play():"DURING"===r||e.paused()||e.pause():n!=e.progress()&&(0===t.duration()?n>0?e.play():e.reverse():t.tweenChanges()&&e.tweenTo?e.tweenTo(n*e.duration()):e.progress(n).pause())}};t.setTween=function(o,a,s){var u;arguments.length>1&&(arguments.length<3&&(s=a,a=1),o=n.to(o,a,s));try{u=r?new r({smoothChildTiming:!0}).add(o):o,u.pause()}catch(p){return t}return e&&t.removeTween(),e=u,o.repeat&&-1===o.repeat()&&(e.repeat(-1),e.yoyo(o.yoyo())),i(),t},t.removeTween=function(n){return e&&(n&&e.progress(0).pause(),e.kill(),e=void 0),t}})}); -------------------------------------------------------------------------------- /public/frontend/plugins/jquery-ui-1.12.1.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/jquery-ui-1.12.1.custom/jquery-ui.css -------------------------------------------------------------------------------- /public/frontend/plugins/jquery-ui-1.12.1.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/jquery-ui-1.12.1.custom/jquery-ui.js -------------------------------------------------------------------------------- /public/frontend/plugins/parallax-js-master/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/frontend/plugins/parallax-js-master/parallax.min.js -------------------------------------------------------------------------------- /public/media/brand/121019_15_06_561582992742.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/121019_15_06_561582992742.jpg -------------------------------------------------------------------------------- /public/media/brand/121019_16_29_061582992408.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/121019_16_29_061582992408.jpg -------------------------------------------------------------------------------- /public/media/brand/12_10_19_481582992705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/12_10_19_481582992705.png -------------------------------------------------------------------------------- /public/media/brand/171019_14_37_171582992437.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/171019_14_37_171582992437.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_09_391582992782.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_09_391582992782.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_10_371582992634.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_10_371582992634.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_14_361582992479.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_14_361582992479.jpg -------------------------------------------------------------------------------- /public/media/brand/231019_15_16_381582992839.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_16_381582992839.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_25_361582992524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_25_361582992524.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_29_371582992910.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_29_371582992910.jpg -------------------------------------------------------------------------------- /public/media/brand/231019_15_40_371582992874.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_40_371582992874.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_42_361582992569.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_42_361582992569.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_51_371582992941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_51_371582992941.jpg -------------------------------------------------------------------------------- /public/media/brand/231019_15_52_391582992968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_52_391582992968.png -------------------------------------------------------------------------------- /public/media/brand/231019_15_55_361582992604.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/231019_15_55_361582992604.png -------------------------------------------------------------------------------- /public/media/brand/Gfavicon1582574592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/Gfavicon1582574592.png -------------------------------------------------------------------------------- /public/media/brand/mlogo1582609223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/mlogo1582609223.png -------------------------------------------------------------------------------- /public/media/brand/pc1582574666.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/brand/pc1582574666.jpeg -------------------------------------------------------------------------------- /public/media/post/1.6597956488964E+15.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1.6597956488964E+15.JPG -------------------------------------------------------------------------------- /public/media/post/1.6597974460577E+15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1.6597974460577E+15.jpeg -------------------------------------------------------------------------------- /public/media/post/1660941563929985.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1660941563929985.jpeg -------------------------------------------------------------------------------- /public/media/post/1660941847566777.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1660941847566777.jpeg -------------------------------------------------------------------------------- /public/media/post/1705002680488359.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1705002680488359.jpg -------------------------------------------------------------------------------- /public/media/post/1705003010031971.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1705003010031971.jpg -------------------------------------------------------------------------------- /public/media/post/1705003093946603.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1705003093946603.jpg -------------------------------------------------------------------------------- /public/media/post/1705003534044539.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1705003534044539.jpg -------------------------------------------------------------------------------- /public/media/post/1705003943736354.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/post/1705003943736354.jpg -------------------------------------------------------------------------------- /public/media/product/1.659711557189E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.659711557189E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597115576776E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597115576776E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597138179016E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597138179016E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597138184252E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597138184252E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597143356703E+15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597143356703E+15.jpeg -------------------------------------------------------------------------------- /public/media/product/1.6597143359903E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597143359903E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597772370071E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597772370071E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597773321166E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597773321166E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597773835914E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597773835914E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6597895606799E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6597895606799E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598876769862E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598876769862E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598876773618E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598876773618E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598962864853E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598962864853E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598981210615E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598981210615E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598981213151E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598981213151E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598985152504E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598985152504E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.659898515482E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.659898515482E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.659898515657E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.659898515657E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598986487543E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598986487543E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598986489413E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598986489413E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598986490313E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598986490313E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598988130225E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598988130225E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598988133411E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598988133411E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598988135311E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598988135311E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598989452824E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598989452824E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.659898945486E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.659898945486E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.659898945631E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.659898945631E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598990707698E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598990707698E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598990709198E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598990709198E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598990710198E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598990710198E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6598991713802E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598991713802E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598991716752E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598991716752E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598991719388E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598991719388E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598993014739E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598993014739E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598993016839E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598993016839E+15.png -------------------------------------------------------------------------------- /public/media/product/1.6598995360244E+15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6598995360244E+15.jpg -------------------------------------------------------------------------------- /public/media/product/1.6600861513599E+15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1.6600861513599E+15.png -------------------------------------------------------------------------------- /public/media/product/1570984353-structure22-1570984337.jpg1582826442.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1570984353-structure22-1570984337.jpg1582826442.jpg -------------------------------------------------------------------------------- /public/media/product/1582826935.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1582826935.png -------------------------------------------------------------------------------- /public/media/product/1660490409866451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660490409866451.png -------------------------------------------------------------------------------- /public/media/product/1660490410596845.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660490410596845.png -------------------------------------------------------------------------------- /public/media/product/1660490410665121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660490410665121.png -------------------------------------------------------------------------------- /public/media/product/1660491067015005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660491067015005.png -------------------------------------------------------------------------------- /public/media/product/1660491067079207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660491067079207.png -------------------------------------------------------------------------------- /public/media/product/1660491067100092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660491067100092.png -------------------------------------------------------------------------------- /public/media/product/1660494330568168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494330568168.png -------------------------------------------------------------------------------- /public/media/product/1660494330597116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494330597116.png -------------------------------------------------------------------------------- /public/media/product/1660494330628758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494330628758.png -------------------------------------------------------------------------------- /public/media/product/1660494454264949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494454264949.png -------------------------------------------------------------------------------- /public/media/product/1660494454313493.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494454313493.png -------------------------------------------------------------------------------- /public/media/product/1660494454334294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494454334294.png -------------------------------------------------------------------------------- /public/media/product/1660494571380616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494571380616.png -------------------------------------------------------------------------------- /public/media/product/1660494571411729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494571411729.png -------------------------------------------------------------------------------- /public/media/product/1660494571489900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660494571489900.png -------------------------------------------------------------------------------- /public/media/product/1660505788123947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660505788123947.jpg -------------------------------------------------------------------------------- /public/media/product/1660505788379607.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660505788379607.jpg -------------------------------------------------------------------------------- /public/media/product/1660635793618601.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1660635793618601.jpeg -------------------------------------------------------------------------------- /public/media/product/1704973002765099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1704973002765099.png -------------------------------------------------------------------------------- /public/media/product/1704973002811279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1704973002811279.png -------------------------------------------------------------------------------- /public/media/product/1704973002901717.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/1704973002901717.png -------------------------------------------------------------------------------- /public/media/product/laptop_PNG5905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/laptop_PNG5905.png -------------------------------------------------------------------------------- /public/media/product/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahed-Chy-Suzan/Laravel_Ecommerce/20af2f6e312b928138065802119bca3a1a625620/public/media/product/unnamed.png -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # Full Featured E-Commerce Web Application 4 | 5 | > Technology Used : Laravel-6, Bootstrap, JavaScript, Ajax 6 | # 7 |
8 | 9 |

10 | 11 | 12 | ## Database Schema 13 | 14 | > Visit this - https://drawsql.app/shahed-chy-suzan/diagrams/e-commerce 15 | 16 | 17 | ## Features 18 | 19 | > Authentication 20 | 21 | > Multiple image upload 22 | 23 | > Discount 24 | 25 | > Coupon 26 | 27 | > Wishlist 28 | 29 | > Cart 30 | 31 | > Checkout 32 | 33 | > Order 34 | 35 | > Report 36 | 37 | > Category 38 | 39 | > Subcategory 40 | 41 | > Brand 42 | 43 | > Products setup 44 | 45 | > Return order 46 | 47 | > Stock management 48 | 49 | > Order tracking 50 | 51 | > SEO 52 | 53 | > Blog 54 | 55 | > Multiple language (Bangla/English) 56 | 57 | > Search 58 | 59 | > Mail (QUEUE) 60 | 61 | > Payment Gateway [Strip] 62 | 63 | > User role 64 | 65 | > Newslater 66 | 67 | > Trend 68 | 69 | > Socialite 70 | 71 | > Settings 72 | 73 | > By one get one 74 | 75 | > Hot deal 76 | 77 | > New Featured 78 | 79 | 80 | ## Packages 81 | 82 | > Alert (sweetalert2) : https://sweetalert2.github.io/ 83 | 84 | > "Stripe" Payment Gateway : https://stripe.com/docs/libraries 85 | 86 | > Facebook Comment Plugin : https://developers.facebook.com/docs/plugins/comments/ 87 | 88 | > Social Share Button : https://platform.sharethis.com/inline-share-buttons 89 | 90 | > Image Intervention : http://image.intervention.io/ 91 | 92 | > Shopping Cart : https://packagist.org/packages/bumbummen99/shoppingcart 93 | 94 | > Socialite : https://www.tutsmake.com/laravel-6-google-login-tutorial-with-socialite-demo-example/ 95 | 96 | > Mail Create, Run: **_php artisan make:mail InvoiceMail_** 97 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * First we will load all of this project's JavaScript dependencies which 3 | * includes Vue and other libraries. It is a great starting point when 4 | * building robust, powerful web applications using Vue and Laravel. 5 | */ 6 | 7 | require('./bootstrap'); 8 | 9 | window.Vue = require('vue'); 10 | 11 | /** 12 | * The following block of code may be used to automatically register your 13 | * Vue components. It will recursively scan this directory for the Vue 14 | * components and automatically register them with their "basename". 15 | * 16 | * Eg. ./components/ExampleComponent.vue -> 17 | */ 18 | 19 | // const files = require.context('./', true, /\.vue$/i) 20 | // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default)) 21 | 22 | Vue.component('example-component', require('./components/ExampleComponent.vue').default); 23 | 24 | /** 25 | * Next, we will create a fresh Vue application instance and attach it to 26 | * the page. Then, you may begin adding components to this application 27 | * or customize the JavaScript scaffolding to fit your unique needs. 28 | */ 29 | 30 | const app = new Vue({ 31 | el: '#app', 32 | }); 33 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | window._ = require('lodash'); 2 | 3 | /** 4 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support 5 | * for JavaScript based Bootstrap features such as modals and tabs. This 6 | * code may be modified to fit the specific needs of your application. 7 | */ 8 | 9 | try { 10 | window.Popper = require('popper.js').default; 11 | window.$ = window.jQuery = require('jquery'); 12 | 13 | require('bootstrap'); 14 | } catch (e) {} 15 | 16 | /** 17 | * We'll load the axios HTTP library which allows us to easily issue requests 18 | * to our Laravel back-end. This library automatically handles sending the 19 | * CSRF token as a header based on the value of the "XSRF" token cookie. 20 | */ 21 | 22 | window.axios = require('axios'); 23 | 24 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 25 | 26 | /** 27 | * Echo exposes an expressive API for subscribing to channels and listening 28 | * for events that are broadcast by Laravel. Echo and event broadcasting 29 | * allows your team to easily build robust real-time web applications. 30 | */ 31 | 32 | // import Echo from 'laravel-echo'; 33 | 34 | // window.Pusher = require('pusher-js'); 35 | 36 | // window.Echo = new Echo({ 37 | // broadcaster: 'pusher', 38 | // key: process.env.MIX_PUSHER_APP_KEY, 39 | // cluster: process.env.MIX_PUSHER_APP_CLUSTER, 40 | // encrypted: true 41 | // }); 42 | -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have e-mailed your password reset link!', 18 | 'token' => 'This password reset token is invalid.', 19 | 'user' => "We can't find a user with that e-mail address.", 20 | 'throttled' => 'Please wait before retrying.', 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-CN/notifications.php: -------------------------------------------------------------------------------- 1 | '异常信息: :message', 5 | 'exception_trace' => '异常跟踪: :trace', 6 | 'exception_message_title' => '异常信息', 7 | 'exception_trace_title' => '异常跟踪', 8 | 9 | 'backup_failed_subject' => ':application_name 备份失败', 10 | 'backup_failed_body' => '重要说明:备份 :application_name 时发生错误', 11 | 12 | 'backup_successful_subject' => ':application_name 备份成功', 13 | 'backup_successful_subject_title' => '备份成功!', 14 | 'backup_successful_body' => '好消息, :application_name 备份成功,位于磁盘 :disk_name 中。', 15 | 16 | 'cleanup_failed_subject' => '清除 :application_name 的备份失败。', 17 | 'cleanup_failed_body' => '清除备份 :application_name 时发生错误', 18 | 19 | 'cleanup_successful_subject' => '成功清除 :application_name 的备份', 20 | 'cleanup_successful_subject_title' => '成功清除备份!', 21 | 'cleanup_successful_body' => '成功清除 :disk_name 磁盘上 :application_name 的备份。', 22 | 23 | 'healthy_backup_found_subject' => ':disk_name 磁盘上 :application_name 的备份是健康的', 24 | 'healthy_backup_found_subject_title' => ':application_name 的备份是健康的', 25 | 'healthy_backup_found_body' => ':application_name 的备份是健康的。干的好!', 26 | 27 | 'unhealthy_backup_found_subject' => '重要说明::application_name 的备份不健康', 28 | 'unhealthy_backup_found_subject_title' => '重要说明::application_name 备份不健康。 :problem', 29 | 'unhealthy_backup_found_body' => ':disk_name 磁盘上 :application_name 的备份不健康。', 30 | 'unhealthy_backup_found_not_reachable' => '无法访问备份目标。 :error', 31 | 'unhealthy_backup_found_empty' => '根本没有此应用程序的备份。', 32 | 'unhealthy_backup_found_old' => '最近的备份创建于 :date ,太旧了。', 33 | 'unhealthy_backup_found_unknown' => '对不起,确切原因无法确定。', 34 | 'unhealthy_backup_found_full' => '备份占用了太多存储空间。当前占用了 :disk_usage ,高于允许的限制 :disk_limit。', 35 | ]; 36 | -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-TW/notifications.php: -------------------------------------------------------------------------------- 1 | '異常訊息: :message', 5 | 'exception_trace' => '異常追蹤: :trace', 6 | 'exception_message_title' => '異常訊息', 7 | 'exception_trace_title' => '異常追蹤', 8 | 9 | 'backup_failed_subject' => ':application_name 備份失敗', 10 | 'backup_failed_body' => '重要說明:備份 :application_name 時發生錯誤', 11 | 12 | 'backup_successful_subject' => ':application_name 備份成功', 13 | 'backup_successful_subject_title' => '備份成功!', 14 | 'backup_successful_body' => '好消息, :application_name 備份成功,位於磁盤 :disk_name 中。', 15 | 16 | 'cleanup_failed_subject' => '清除 :application_name 的備份失敗。', 17 | 'cleanup_failed_body' => '清除備份 :application_name 時發生錯誤', 18 | 19 | 'cleanup_successful_subject' => '成功清除 :application_name 的備份', 20 | 'cleanup_successful_subject_title' => '成功清除備份!', 21 | 'cleanup_successful_body' => '成功清除 :disk_name 磁盤上 :application_name 的備份。', 22 | 23 | 'healthy_backup_found_subject' => ':disk_name 磁盤上 :application_name 的備份是健康的', 24 | 'healthy_backup_found_subject_title' => ':application_name 的備份是健康的', 25 | 'healthy_backup_found_body' => ':application_name 的備份是健康的。幹的好!', 26 | 27 | 'unhealthy_backup_found_subject' => '重要說明::application_name 的備份不健康', 28 | 'unhealthy_backup_found_subject_title' => '重要說明::application_name 備份不健康。 :problem', 29 | 'unhealthy_backup_found_body' => ':disk_name 磁盤上 :application_name 的備份不健康。', 30 | 'unhealthy_backup_found_not_reachable' => '無法訪問備份目標。 :error', 31 | 'unhealthy_backup_found_empty' => '根本沒有此應用程序的備份。', 32 | 'unhealthy_backup_found_old' => '最近的備份創建於 :date ,太舊了。', 33 | 'unhealthy_backup_found_unknown' => '對不起,確切原因無法確定。', 34 | 'unhealthy_backup_found_full' => '備份佔用了太多存儲空間。當前佔用了 :disk_usage ,高於允許的限制 :disk_limit。', 35 | ]; 36 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /resources/views/admin/category/edit_category.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin.admin_layouts') 2 | 3 | @section('admin_content') 4 | 5 | 6 |
7 |
8 |
9 |
Category Update
10 |
11 | 12 |
13 |
Category Update
14 |
15 |
16 | {{-- validation error --}} 17 | @if ($errors->any()) 18 |
19 |
    20 | @foreach ($errors->all() as $error) 21 |
  • {{ $error }}
  • 22 | @endforeach 23 |
24 |
25 | @endif 26 | {{--End validation error --}} 27 | 28 |
29 | @csrf 30 | 37 | 41 |
42 |
43 |
44 |
45 | 46 | @endsection -------------------------------------------------------------------------------- /resources/views/admin/coupon/newsletter.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin.admin_layouts') 2 | 3 | @section('admin_content') 4 | 5 | 6 |
7 |
8 |
9 |
Subscriber Table
10 |
11 | 12 |
13 |
Subscriber List 14 | Delete All 15 |
16 |
17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | @foreach($newsletter as $row) 30 | 31 | 32 | 33 | 34 | 37 | 38 | @endforeach 39 | 40 |
IDEmailSubscription TimeAction
{{$row->id}}{{ $row->email }}{{ \Carbon\Carbon::parse($row->created_at)->diffForhumans() }} 35 | Delete 36 |
41 |
42 |
43 | 44 | @endsection 45 | -------------------------------------------------------------------------------- /resources/views/admin/setting/db_backup.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin.admin_layouts') 2 | @section('admin_content') 3 | 4 |
5 |
6 |
7 |
Database Backup
8 |
9 | 10 |
11 |
Database Backup List 12 | Backup Now 13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | @foreach($files as $row) 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | @endforeach 36 | 37 |
File NameSizePathDownloadAction
{{ $row->getFilename() }}{{ $row->getSize() }} Kb{{ $row->getpath()}} Delete
38 |
39 |
40 |
41 | 42 | @endsection 43 | -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Verify Your Email Address') }}
9 | 10 |
11 | @if (session('resent')) 12 | 15 | @endif 16 | 17 | {{ __('Before proceeding, please check your email for a verification link.') }} 18 | {{ __('If you did not receive the email') }}, 19 |
20 | @csrf 21 | . 22 |
23 |
24 |
25 |
26 |
27 |
28 | @endsection 29 | -------------------------------------------------------------------------------- /resources/views/mail/invoice.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
    9 |
  • payment id = {{ $data['payment_id'] }}
  • 10 |
  • Total = {{ $data['total'] }}
  • 11 |
  • Status code = {{ $data['status_code'] }}
  • 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .sass('resources/sass/app.scss', 'public/css'); 16 | --------------------------------------------------------------------------------