├── .editorconfig ├── .gitbook.yaml ├── .github └── FUNDING.yml ├── .gitignore ├── .snyk ├── .travis.yml ├── changelog.md ├── composer.json ├── config ├── cartalyst.sentinel.php ├── currencyConverter.php ├── laravellocalization.php ├── scout.php ├── shopper.php └── ttwitter.php ├── contributing.md ├── database ├── .gitignore ├── migrations │ ├── 2014_07_02_230147_migration_cartalyst_sentinel.php │ ├── 2018_12_01_011405_create_backend_acces_logs_table.php │ ├── 2018_12_04_053342_create_shopper_medias_table.php │ ├── 2018_12_29_221339_create_shopper_location_countries.php │ ├── 2018_12_29_222223_create_shopper_location_states.php │ ├── 2019_01_11_193901_create_shopper_settings.php │ ├── 2019_02_12_224405_templates.php │ └── 2019_03_09_071853_create_views_table.php └── seeds │ ├── CountriesTableSeeder.php │ ├── RolesTableSeeder.php │ ├── SettingsTableSeeder.php │ ├── ShopperSeeder.php │ ├── SizesTableSeeder.php │ ├── StatusTableSeeder.php │ └── countries.json ├── docs ├── .gitbook │ └── assets │ │ ├── media_manager.png │ │ └── settings.png ├── architecture-concepts │ ├── helper-methods.md │ ├── media-manager.md │ └── settings.md ├── getting-started │ ├── configurations.md │ ├── installation.md │ ├── upgrading.md │ └── what-is-shopper.md ├── introduction.md └── summary.md ├── license.md ├── package.json ├── phpunit.xml ├── public ├── css │ ├── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff │ ├── login.css │ ├── login.css.map │ ├── shopper.css │ └── shopper.css.map ├── fonts │ └── vendor │ │ └── element-theme-default │ │ ├── lib │ │ ├── element-icons.ttf │ │ └── element-icons.woff │ │ └── src │ │ ├── element-icons.ttf │ │ └── element-icons.woff ├── img │ ├── brands │ │ ├── database.svg │ │ ├── laravel.svg │ │ ├── php.svg │ │ └── server.svg │ ├── credit-cards │ │ ├── amex.svg │ │ ├── diners.svg │ │ ├── discover.svg │ │ ├── jcb.svg │ │ ├── laser.svg │ │ ├── maestro.svg │ │ ├── mastercard.svg │ │ ├── oca.svg │ │ ├── paypal.svg │ │ ├── unknown.svg │ │ └── visa.svg │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── flags │ │ ├── AD.png │ │ ├── AE.png │ │ ├── AF.png │ │ ├── AG.png │ │ ├── AI.png │ │ ├── AL.png │ │ ├── AM.png │ │ ├── AN.png │ │ ├── AO.png │ │ ├── AQ.png │ │ ├── AR.png │ │ ├── AS.png │ │ ├── AT.png │ │ ├── AU.png │ │ ├── AW.png │ │ ├── AZ.png │ │ ├── BA.png │ │ ├── BB.png │ │ ├── BD.png │ │ ├── BE.png │ │ ├── BF.png │ │ ├── BG.png │ │ ├── BH.png │ │ ├── BI.png │ │ ├── BJ.png │ │ ├── BM.png │ │ ├── BN.png │ │ ├── BO.png │ │ ├── BR.png │ │ ├── BS.png │ │ ├── BT.png │ │ ├── BV.png │ │ ├── BW.png │ │ ├── BY.png │ │ ├── BZ.png │ │ ├── CA.png │ │ ├── CC.png │ │ ├── CD.png │ │ ├── CF.png │ │ ├── CG.png │ │ ├── CH.png │ │ ├── CI.png │ │ ├── CK.png │ │ ├── CL.png │ │ ├── CM.png │ │ ├── CN.png │ │ ├── CO.png │ │ ├── CR.png │ │ ├── CS.png │ │ ├── CU.png │ │ ├── CV.png │ │ ├── CX.png │ │ ├── CY.png │ │ ├── CZ.png │ │ ├── DE.png │ │ ├── DJ.png │ │ ├── DK.png │ │ ├── DM.png │ │ ├── DO.png │ │ ├── DZ.png │ │ ├── EC.png │ │ ├── EE.png │ │ ├── EG.png │ │ ├── EH.png │ │ ├── ER.png │ │ ├── ES.png │ │ ├── ET.png │ │ ├── FI.png │ │ ├── FJ.png │ │ ├── FK.png │ │ ├── FM.png │ │ ├── FO.png │ │ ├── FR.png │ │ ├── GA.png │ │ ├── GB.png │ │ ├── GD.png │ │ ├── GE.png │ │ ├── GF.png │ │ ├── GH.png │ │ ├── GI.png │ │ ├── GL.png │ │ ├── GM.png │ │ ├── GN.png │ │ ├── GP.png │ │ ├── GQ.png │ │ ├── GR.png │ │ ├── GS.png │ │ ├── GT.png │ │ ├── GU.png │ │ ├── GW.png │ │ ├── GY.png │ │ ├── HK.png │ │ ├── HM.png │ │ ├── HN.png │ │ ├── HR.png │ │ ├── HT.png │ │ ├── HU.png │ │ ├── ID.png │ │ ├── IE.png │ │ ├── IL.png │ │ ├── IN.png │ │ ├── IO.png │ │ ├── IQ.png │ │ ├── IR.png │ │ ├── IS.png │ │ ├── IT.png │ │ ├── JM.png │ │ ├── JO.png │ │ ├── JP.png │ │ ├── KE.png │ │ ├── KG.png │ │ ├── KH.png │ │ ├── KI.png │ │ ├── KM.png │ │ ├── KN.png │ │ ├── KP.png │ │ ├── KR.png │ │ ├── KW.png │ │ ├── KY.png │ │ ├── KZ.png │ │ ├── LA.png │ │ ├── LB.png │ │ ├── LC.png │ │ ├── LI.png │ │ ├── LK.png │ │ ├── LR.png │ │ ├── LS.png │ │ ├── LT.png │ │ ├── LU.png │ │ ├── LV.png │ │ ├── LY.png │ │ ├── MA.png │ │ ├── MC.png │ │ ├── MD.png │ │ ├── ME.png │ │ ├── MG.png │ │ ├── MH.png │ │ ├── MK.png │ │ ├── ML.png │ │ ├── MM.png │ │ ├── MN.png │ │ ├── MO.png │ │ ├── MP.png │ │ ├── MQ.png │ │ ├── MR.png │ │ ├── MS.png │ │ ├── MT.png │ │ ├── MU.png │ │ ├── MV.png │ │ ├── MW.png │ │ ├── MX.png │ │ ├── MY.png │ │ ├── MZ.png │ │ ├── NA.png │ │ ├── NC.png │ │ ├── NE.png │ │ ├── NF.png │ │ ├── NG.png │ │ ├── NI.png │ │ ├── NL.png │ │ ├── NO.png │ │ ├── NP.png │ │ ├── NR.png │ │ ├── NU.png │ │ ├── NZ.png │ │ ├── OM.png │ │ ├── PA.png │ │ ├── PE.png │ │ ├── PF.png │ │ ├── PG.png │ │ ├── PH.png │ │ ├── PK.png │ │ ├── PL.png │ │ ├── PM.png │ │ ├── PN.png │ │ ├── PR.png │ │ ├── PS.png │ │ ├── PT.png │ │ ├── PW.png │ │ ├── PY.png │ │ ├── QA.png │ │ ├── RE.png │ │ ├── RO.png │ │ ├── RU.png │ │ ├── RW.png │ │ ├── SA.png │ │ ├── SB.png │ │ ├── SC.png │ │ ├── SD.png │ │ ├── SE.png │ │ ├── SG.png │ │ ├── SH.png │ │ ├── SI.png │ │ ├── SJ.png │ │ ├── SK.png │ │ ├── SL.png │ │ ├── SM.png │ │ ├── SN.png │ │ ├── SO.png │ │ ├── SR.png │ │ ├── ST.png │ │ ├── SV.png │ │ ├── SY.png │ │ ├── SZ.png │ │ ├── TC.png │ │ ├── TD.png │ │ ├── TF.png │ │ ├── TG.png │ │ ├── TH.png │ │ ├── TJ.png │ │ ├── TK.png │ │ ├── TL.png │ │ ├── TM.png │ │ ├── TN.png │ │ ├── TO.png │ │ ├── TR.png │ │ ├── TT.png │ │ ├── TV.png │ │ ├── TW.png │ │ ├── TZ.png │ │ ├── UA.png │ │ ├── UG.png │ │ ├── UM.png │ │ ├── US.png │ │ ├── UY.png │ │ ├── UZ.png │ │ ├── VA.png │ │ ├── VC.png │ │ ├── VE.png │ │ ├── VG.png │ │ ├── VI.png │ │ ├── VN.png │ │ ├── VU.png │ │ ├── WF.png │ │ ├── WS.png │ │ ├── YE.png │ │ ├── YT.png │ │ ├── ZA.png │ │ ├── ZM.png │ │ └── ZW.png │ ├── img-not-found-_x22.png │ ├── img-not-found.png │ ├── logo-white.svg │ ├── logo.jpg │ ├── logo.svg │ ├── search-by-algolia.svg │ ├── shopper.svg │ └── skeletons │ │ ├── html │ │ ├── airmail.png │ │ ├── cerberus.png │ │ ├── cleave.jpg │ │ ├── go.png │ │ ├── goldstar.png │ │ ├── mantra.png │ │ ├── meow.png │ │ ├── narrative.jpg │ │ ├── neopolitan.png │ │ ├── oxygen.jpg │ │ ├── plain.png │ │ ├── skyline.png │ │ ├── sunday.png │ │ └── zenflat.jpg │ │ ├── markdown │ │ ├── plain.png │ │ └── postmark.png │ │ └── no-image.png ├── js │ ├── jquery.min.js │ ├── login.js │ ├── login.js.map │ ├── shopper.js │ └── shopper.js.map └── mix-manifest.json ├── readme.md ├── resources ├── js │ ├── bootstrap.js │ ├── components │ │ ├── NavbarSearch.jsx │ │ ├── ShopperComponent.jsx │ │ ├── TextEditor.jsx │ │ ├── banners │ │ │ ├── BannerForm.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ ├── brands │ │ │ ├── BrandForm.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ ├── categories │ │ │ ├── CategoryForm.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ ├── locations │ │ │ ├── CountryForm.jsx │ │ │ ├── columns.js │ │ │ ├── fields.js │ │ │ ├── stateFields.js │ │ │ └── validation.js │ │ ├── login │ │ │ └── Notification.jsx │ │ ├── orders │ │ │ ├── OrderForm.jsx │ │ │ ├── PaymentForm.jsx │ │ │ ├── ShippingTypeForm.jsx │ │ │ ├── StatusForm.jsx │ │ │ ├── orders │ │ │ │ ├── Price.js │ │ │ │ ├── buyerColumns.js │ │ │ │ ├── columns.js │ │ │ │ ├── fields.js │ │ │ │ ├── offerFields.js │ │ │ │ ├── offerValidation.js │ │ │ │ └── validation.js │ │ │ ├── payments │ │ │ │ ├── fields.js │ │ │ │ └── validation.js │ │ │ ├── shipping │ │ │ │ ├── fields.js │ │ │ │ └── validation.js │ │ │ └── status │ │ │ │ ├── fields.js │ │ │ │ └── validation.js │ │ ├── products │ │ │ ├── ProductForm.jsx │ │ │ ├── SocialShare.jsx │ │ │ ├── columns.js │ │ │ ├── fields.js │ │ │ ├── offerFields.js │ │ │ ├── offerValidation.js │ │ │ ├── productsColumns.js │ │ │ └── validation.js │ │ ├── promo │ │ │ ├── CouponForm.jsx │ │ │ ├── DiscountForm.jsx │ │ │ ├── coupons │ │ │ │ ├── fields.js │ │ │ │ ├── productFields.js │ │ │ │ └── validation.js │ │ │ └── discounts │ │ │ │ ├── fields.js │ │ │ │ ├── offerFields.js │ │ │ │ └── validation.js │ │ ├── reviews │ │ │ ├── ReviewForm.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ ├── sizes │ │ │ ├── SizeForm.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ ├── tags │ │ │ ├── TagFrom.jsx │ │ │ ├── fields.js │ │ │ └── validation.js │ │ └── users │ │ │ ├── AdministratorForm.jsx │ │ │ ├── AdministratorProfileForm.jsx │ │ │ ├── UserForm.jsx │ │ │ ├── addressFields.js │ │ │ ├── addressValidation.js │ │ │ ├── addressesColumns.js │ │ │ ├── adminFields.js │ │ │ ├── columns │ │ │ └── balanceColumns.js │ │ │ ├── fields.js │ │ │ ├── forms │ │ │ └── transactionForm.js │ │ │ └── ordersColumns.js │ ├── helpers │ │ ├── slugify.js │ │ └── translate.js │ ├── libs │ │ ├── file-manager.js │ │ ├── pace.js │ │ └── slug.js │ ├── login.js │ └── shopper.js ├── lang │ ├── en.json │ └── fr.json ├── sass │ ├── _custom-styles.scss │ ├── _custom-variables.scss │ ├── colors │ │ └── _colors.scss │ ├── components │ │ ├── _card.scss │ │ ├── _pace.scss │ │ ├── _product.scss │ │ ├── algolia.scss │ │ └── dropzone.scss │ ├── core │ │ ├── arrow.scss │ │ ├── buttons.scss │ │ ├── components.scss │ │ ├── element-react.scss │ │ ├── form.scss │ │ ├── item.scss │ │ ├── layout.scss │ │ ├── login.scss │ │ ├── mixins.scss │ │ ├── modals.scss │ │ ├── nav.offscreen.scss │ │ ├── nav.scss │ │ ├── reset.scss │ │ ├── tables.scss │ │ └── utilities.scss │ ├── hljs-styles.scss │ ├── login.scss │ ├── maileclipse-app.scss │ ├── pages │ │ ├── dashboard.scss │ │ ├── file-manager.css │ │ └── transfert.scss │ ├── plugins │ │ ├── notfound.scss │ │ ├── notie.scss │ │ └── plugin.scss │ ├── shopper.scss │ └── theme │ │ └── _variables.scss └── views │ ├── components │ ├── flash.blade.php │ ├── menu │ │ ├── leftMenu.blade.php │ │ ├── leftSubMenu.blade.php │ │ └── mainMenu.blade.php │ ├── notifications.blade.php │ └── paginations.blade.php │ ├── layouts │ ├── auth.blade.php │ ├── dashboard.blade.php │ └── emptydata.blade.php │ ├── pages │ ├── auth │ │ ├── login.blade.php │ │ └── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ ├── backend │ │ ├── roles │ │ │ └── index.blade.php │ │ └── users │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── profile.blade.php │ ├── banners │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── brands │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── categories │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ ├── _algolia-indices.blade.php │ │ ├── e-commerce.blade.php │ │ └── index.blade.php │ ├── filemanager │ │ └── index.blade.php │ ├── logs │ │ └── index.blade.php │ ├── mails │ │ ├── config.blade.php │ │ ├── draft │ │ │ └── .gitignore │ │ ├── previewerror.blade.php │ │ ├── sections │ │ │ ├── create-template.blade.php │ │ │ ├── edit-mailable-template.blade.php │ │ │ ├── edit-template.blade.php │ │ │ ├── mailables.blade.php │ │ │ ├── new-template.blade.php │ │ │ ├── templates.blade.php │ │ │ └── view-mailable.blade.php │ │ ├── skeletons │ │ │ ├── html │ │ │ │ ├── airmail │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── cerberus │ │ │ │ │ ├── fluid.blade.php │ │ │ │ │ ├── hybrid.blade.php │ │ │ │ │ └── responsive.blade.php │ │ │ │ ├── cleave │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── go │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── goldstar │ │ │ │ │ ├── birthday.blade.php │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── update.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── mantra │ │ │ │ │ ├── activation.blade.php │ │ │ │ │ ├── birthday.blade.php │ │ │ │ │ ├── coupon.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── rating.blade.php │ │ │ │ │ ├── receipt.blade.php │ │ │ │ │ ├── shipped.blade.php │ │ │ │ │ ├── update.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── meow │ │ │ │ │ ├── confirmation.blade.php │ │ │ │ │ ├── coupon.blade.php │ │ │ │ │ ├── digest-left.blade.php │ │ │ │ │ ├── digest-right.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── receipt.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── two-column.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── narrative │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── neopolitan │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── oxygen │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── plain │ │ │ │ │ └── plain.blade.php │ │ │ │ ├── skyline │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ ├── sunday │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ │ └── zenflat │ │ │ │ │ ├── confirm.blade.php │ │ │ │ │ ├── invite.blade.php │ │ │ │ │ ├── invoice.blade.php │ │ │ │ │ ├── ping.blade.php │ │ │ │ │ ├── progress.blade.php │ │ │ │ │ ├── reignite.blade.php │ │ │ │ │ ├── survey.blade.php │ │ │ │ │ ├── upsell.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ └── markdown │ │ │ │ └── postmark │ │ │ │ ├── blank.blade.php │ │ │ │ ├── comment-notification.blade.php │ │ │ │ ├── invoice.blade.php │ │ │ │ ├── receipt.blade.php │ │ │ │ ├── reset-password-help.blade.php │ │ │ │ ├── reset-password.blade.php │ │ │ │ ├── trial-expired.blade.php │ │ │ │ ├── trial-expiring.blade.php │ │ │ │ ├── user-invitation.blade.php │ │ │ │ └── welcome.blade.php │ │ └── templates │ │ │ └── .gitignore │ ├── orders │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ ├── payments │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ ├── shipping │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ └── status │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ ├── products │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── promo │ │ ├── coupons │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ └── discounts │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ ├── reviews │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── settings │ │ ├── base │ │ │ ├── algolia.blade.php │ │ │ ├── base.blade.php │ │ │ ├── index.blade.php │ │ │ ├── info.blade.php │ │ │ └── social.blade.php │ │ └── locations │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ ├── sizes │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── tags │ │ ├── form.blade.php │ │ └── index.blade.php │ ├── translate │ │ └── index.blade.php │ ├── users │ │ ├── form.blade.php │ │ └── index.blade.php │ └── working.blade.php │ └── partials │ ├── auth │ ├── footer.blade.php │ └── logo.blade.php │ ├── layouts │ ├── header.blade.php │ └── sidebar.blade.php │ └── paginations.blade.php ├── routes ├── auth.php ├── backend.php └── web.php ├── src ├── Commands │ ├── CreateAdminCommand.php │ ├── InstallShopperCommand.php │ └── PublicLinkCommand.php ├── Core │ ├── EnvironmentManager.php │ ├── Facebook │ │ └── Api.php │ ├── FileManager.php │ ├── Menu.php │ ├── SendTo.php │ ├── Services │ │ └── Zip.php │ ├── ShopperMail.php │ ├── Twitter │ │ ├── Api.php │ │ └── OAuth.php │ └── Version.php ├── Events │ └── ImageResize.php ├── Facades │ └── Shopper.php ├── Helpers │ └── helpers.php ├── Http │ ├── Composers │ │ ├── MenuComposer.php │ │ └── ProfileComposer.php │ ├── Controllers │ │ ├── Backend │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── CountryController.php │ │ │ ├── DashboardController.php │ │ │ ├── FileManagerController.php │ │ │ ├── LogController.php │ │ │ ├── Mails │ │ │ │ ├── Configuration.php │ │ │ │ ├── MailablesController.php │ │ │ │ └── TemplatesController.php │ │ │ ├── MediaController.php │ │ │ ├── RoleController.php │ │ │ ├── SettingController.php │ │ │ ├── StateController.php │ │ │ ├── TranslateController.php │ │ │ └── UserController.php │ │ └── Controller.php │ ├── Middleware │ │ ├── Dashboard.php │ │ └── RedirectIfAuthenticated.php │ └── Requests │ │ ├── BaseRequest.php │ │ ├── CountryRequest.php │ │ ├── CustomErrorMessage.php │ │ ├── ProfileRequest.php │ │ ├── RequestValidator.php │ │ ├── RoleRequest.php │ │ ├── StateRequest.php │ │ └── UserRequest.php ├── Listeners │ └── ImageCropped.php ├── Models │ ├── AccessLog.php │ ├── Country.php │ ├── MailTemplate.php │ ├── Media.php │ ├── Sentinel │ │ ├── EloquentActivation.php │ │ ├── EloquentPersistence.php │ │ ├── EloquentReminder.php │ │ ├── EloquentRole.php │ │ ├── EloquentThrottle.php │ │ ├── EloquentUser.php │ │ └── StandardPermissions.php │ ├── Setting.php │ └── State.php ├── Notifications │ ├── ReminderEmailSender.php │ └── UserCredentials.php ├── Plugins │ ├── Catalogue │ │ ├── Database │ │ │ └── Migrations │ │ │ │ ├── 2018_12_04_055716_create_catalogue_categories_table.php │ │ │ │ ├── 2018_12_04_055724_create_catalogue_brands_table.php │ │ │ │ ├── 2018_12_04_055726_create_catalogue_products_table.php │ │ │ │ ├── 2018_12_04_182323_create_catalogue_additional_categories_table.php │ │ │ │ ├── 2018_12_04_182625_create_catalogue_offers_table.php │ │ │ │ ├── 2019_01_05_155019_create_block_products_relations.php │ │ │ │ ├── 2019_01_15_084800_create_shopper_reviews.php │ │ │ │ ├── 2019_04_07_222352_create_shopper_media_sizes.php │ │ │ │ └── 2019_04_08_002127_create_shopper_media_banners.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ ├── BannerController.php │ │ │ │ ├── BrandController.php │ │ │ │ ├── CategoryController.php │ │ │ │ ├── OfferController.php │ │ │ │ ├── ProductController.php │ │ │ │ ├── PromotionController.php │ │ │ │ ├── ReviewController.php │ │ │ │ └── SizeController.php │ │ │ └── Requests │ │ │ │ ├── BannerRequest.php │ │ │ │ ├── BrandRequest.php │ │ │ │ ├── CategoryRequest.php │ │ │ │ ├── ProductRequest.php │ │ │ │ ├── ReviewRequest.php │ │ │ │ └── SizeRequest.php │ │ ├── Models │ │ │ ├── Banner.php │ │ │ ├── Brand.php │ │ │ ├── Category.php │ │ │ ├── Offer.php │ │ │ ├── Product.php │ │ │ ├── ProductRelation.php │ │ │ ├── Review.php │ │ │ └── Size.php │ │ ├── Observers │ │ │ ├── BannerObserver.php │ │ │ ├── BrandObserver.php │ │ │ ├── CategoryObserver.php │ │ │ ├── ProductObserver.php │ │ │ └── SizeObserver.php │ │ ├── Providers │ │ │ ├── CatalogueServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── ObserverServiceProvider.php │ │ ├── Repositories │ │ │ ├── BannerRepository.php │ │ │ ├── BrandRepository.php │ │ │ ├── CategoryRepository.php │ │ │ ├── OfferRepository.php │ │ │ ├── ProductRepository.php │ │ │ ├── ReviewRepository.php │ │ │ └── SizeRepository.php │ │ ├── Resources │ │ │ └── Lang │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ ├── plugin.json │ │ └── routes.php │ ├── Orders │ │ ├── Database │ │ │ └── Migrations │ │ │ │ ├── 2018_12_14_042407_create_statuses_table.php │ │ │ │ ├── 2018_12_14_042529_create_shipping_types_table.php │ │ │ │ ├── 2018_12_14_042557_create_payment_methods_table.php │ │ │ │ ├── 2018_12_14_043246_create_orders_table.php │ │ │ │ ├── 2018_12_14_051620_create_offer_order_table.php │ │ │ │ ├── 2019_01_15_074738_create_shopper_carts.php │ │ │ │ ├── 2019_01_15_074825_create_shopper_cart_content.php │ │ │ │ ├── 2019_01_15_080435_create_shopper_wishlists.php │ │ │ │ ├── 2019_01_15_080450_create_shopper_wishlist_content.php │ │ │ │ └── 2019_07_12_093622_rename_offer_id_to_product_id_in_shopper_wishlist_content_table.php │ │ ├── Helpers │ │ │ └── PriceHelper.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ ├── OrderController.php │ │ │ │ ├── PaymentMethodController.php │ │ │ │ ├── ShippingTypeController.php │ │ │ │ └── StatusController.php │ │ │ └── Requests │ │ │ │ ├── OrderRequest.php │ │ │ │ ├── PaymentRequest.php │ │ │ │ ├── ShippingTypeRequest.php │ │ │ │ └── StatusRequest.php │ │ ├── Models │ │ │ ├── Cart.php │ │ │ ├── CartContent.php │ │ │ ├── Order.php │ │ │ ├── OrderContent.php │ │ │ ├── PaymentMethod.php │ │ │ ├── ShippingType.php │ │ │ ├── Status.php │ │ │ ├── Wishlist.php │ │ │ └── WishlistContent.php │ │ ├── Observers │ │ │ └── OrderObserver.php │ │ ├── Providers │ │ │ ├── ObserverServiceProvider.php │ │ │ └── OrderServiceProvider.php │ │ ├── Repositories │ │ │ ├── CartRepository.php │ │ │ ├── OrderRepository.php │ │ │ ├── PaymentRepository.php │ │ │ ├── ShippingTypeRepository.php │ │ │ ├── StatusRepository.php │ │ │ └── WishlistRepository.php │ │ ├── Resources │ │ │ └── Lang │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ ├── Transformers │ │ │ └── OrderTransformer.php │ │ ├── plugin.json │ │ └── routes.php │ ├── Promo │ │ ├── Database │ │ │ └── Migrations │ │ │ │ ├── 2018_12_04_185347_create_catalogue_promotions_table.php │ │ │ │ ├── 2018_12_04_185427_create_catalogue_promotion_product_table.php │ │ │ │ ├── 2019_01_17_095921_create_shopper_discounts.php │ │ │ │ ├── 2019_03_13_214424_create_shopper_coupons.php │ │ │ │ └── 2019_03_13_214504_create_shopper_coupons_couponables.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ ├── CouponController.php │ │ │ │ └── DiscountController.php │ │ │ └── Requests │ │ │ │ ├── CouponRequest.php │ │ │ │ └── DiscountRequest.php │ │ ├── Models │ │ │ ├── Coupon.php │ │ │ ├── CouponRelation.php │ │ │ └── Discount.php │ │ ├── Observers │ │ │ └── CouponObserver.php │ │ ├── Providers │ │ │ ├── ObserverServiceProvider.php │ │ │ └── PromoServiceProvider.php │ │ ├── Repositories │ │ │ ├── CouponRepository.php │ │ │ └── DiscountRepository.php │ │ ├── Resources │ │ │ └── Lang │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ ├── plugin.json │ │ └── routes.php │ ├── ShopperPluginServiceProvider.php │ ├── Tags │ │ ├── Database │ │ │ └── Migrations │ │ │ │ ├── 2019_01_07_151606_create_shopper_tags.php │ │ │ │ └── 2019_01_07_163931_create_shopper_tags_taggables.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ └── TagController.php │ │ │ └── Requests │ │ │ │ └── TagRequest.php │ │ ├── Models │ │ │ ├── Tag.php │ │ │ └── TagRelation.php │ │ ├── Observers │ │ │ └── TagObserver.php │ │ ├── Providers │ │ │ ├── ObserverServiceProvider.php │ │ │ └── TagServiceProvider.php │ │ ├── Repositories │ │ │ └── TagRepository.php │ │ ├── Resources │ │ │ └── Lang │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ ├── plugin.json │ │ └── routes.php │ └── Users │ │ ├── Database │ │ └── Migrations │ │ │ ├── 2018_12_13_110722_create_shopper_users_table.php │ │ │ ├── 2019_01_01_185759_create_shopper_addresses.php │ │ │ ├── 2019_02_27_143841_create_shopper_wallet_table.php │ │ │ ├── 2019_03_27_143622_create_shopper_wallet_transaction_table.php │ │ │ └── 2019_06_22_214227_add_name_column_to_shopper_addresses.php │ │ ├── Http │ │ ├── Controllers │ │ │ ├── AddressController.php │ │ │ ├── BalanceController.php │ │ │ └── UserController.php │ │ └── Requests │ │ │ ├── AddressRequest.php │ │ │ ├── BalanceRequest.php │ │ │ └── UserRequest.php │ │ ├── Models │ │ ├── Address.php │ │ ├── Transaction.php │ │ ├── User.php │ │ └── Wallet.php │ │ ├── Observers │ │ └── UserObserver.php │ │ ├── Providers │ │ ├── ObserverServiceProvider.php │ │ └── UserServiceProvider.php │ │ ├── Repositories │ │ ├── AddressRepository.php │ │ ├── BalanceRepository.php │ │ └── UserRepository.php │ │ ├── Resources │ │ └── Lang │ │ │ ├── en.json │ │ │ └── fr.json │ │ ├── Traits │ │ └── HasWallet.php │ │ ├── plugin.json │ │ └── routes.php ├── Providers │ ├── ComposerServiceProvider.php │ ├── ConsoleServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── CountryRepository.php │ ├── MediaRepository.php │ ├── RoleRepository.php │ ├── StateRepository.php │ └── UserRepository.php ├── Shopper.php ├── ShopperServiceProvider.php ├── Traits │ ├── CheckTrait.php │ ├── ContentTrait.php │ ├── Mediatable.php │ ├── PathTrait.php │ ├── Resize.php │ ├── Seedable.php │ ├── Setting.php │ └── Singleton.php └── TransferService │ ├── ExternalTransfer.php │ ├── LocalTransfer.php │ ├── Transfer.php │ └── TransferFactory.php ├── tests └── ShopperTestCase.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/composer.json -------------------------------------------------------------------------------- /config/cartalyst.sentinel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/cartalyst.sentinel.php -------------------------------------------------------------------------------- /config/currencyConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/currencyConverter.php -------------------------------------------------------------------------------- /config/laravellocalization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/laravellocalization.php -------------------------------------------------------------------------------- /config/scout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/scout.php -------------------------------------------------------------------------------- /config/shopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/shopper.php -------------------------------------------------------------------------------- /config/ttwitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/config/ttwitter.php -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/contributing.md -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/migrations/2019_01_11_193901_create_shopper_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/migrations/2019_01_11_193901_create_shopper_settings.php -------------------------------------------------------------------------------- /database/migrations/2019_02_12_224405_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/migrations/2019_02_12_224405_templates.php -------------------------------------------------------------------------------- /database/migrations/2019_03_09_071853_create_views_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/migrations/2019_03_09_071853_create_views_table.php -------------------------------------------------------------------------------- /database/seeds/CountriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/CountriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/ShopperSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/ShopperSeeder.php -------------------------------------------------------------------------------- /database/seeds/SizesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/SizesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/StatusTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/StatusTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/database/seeds/countries.json -------------------------------------------------------------------------------- /docs/.gitbook/assets/media_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/.gitbook/assets/media_manager.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/.gitbook/assets/settings.png -------------------------------------------------------------------------------- /docs/architecture-concepts/helper-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/architecture-concepts/helper-methods.md -------------------------------------------------------------------------------- /docs/architecture-concepts/media-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/architecture-concepts/media-manager.md -------------------------------------------------------------------------------- /docs/architecture-concepts/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/architecture-concepts/settings.md -------------------------------------------------------------------------------- /docs/getting-started/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/getting-started/configurations.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/getting-started/upgrading.md -------------------------------------------------------------------------------- /docs/getting-started/what-is-shopper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/getting-started/what-is-shopper.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/docs/summary.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/css/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/fonts/element-icons.ttf -------------------------------------------------------------------------------- /public/css/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/fonts/element-icons.woff -------------------------------------------------------------------------------- /public/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/login.css -------------------------------------------------------------------------------- /public/css/login.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/login.css.map -------------------------------------------------------------------------------- /public/css/shopper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/shopper.css -------------------------------------------------------------------------------- /public/css/shopper.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/css/shopper.css.map -------------------------------------------------------------------------------- /public/fonts/vendor/element-theme-default/lib/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/fonts/vendor/element-theme-default/lib/element-icons.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/element-theme-default/lib/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/fonts/vendor/element-theme-default/lib/element-icons.woff -------------------------------------------------------------------------------- /public/fonts/vendor/element-theme-default/src/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/fonts/vendor/element-theme-default/src/element-icons.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/element-theme-default/src/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/fonts/vendor/element-theme-default/src/element-icons.woff -------------------------------------------------------------------------------- /public/img/brands/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/brands/database.svg -------------------------------------------------------------------------------- /public/img/brands/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/brands/laravel.svg -------------------------------------------------------------------------------- /public/img/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/brands/php.svg -------------------------------------------------------------------------------- /public/img/brands/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/brands/server.svg -------------------------------------------------------------------------------- /public/img/credit-cards/amex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/amex.svg -------------------------------------------------------------------------------- /public/img/credit-cards/diners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/diners.svg -------------------------------------------------------------------------------- /public/img/credit-cards/discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/discover.svg -------------------------------------------------------------------------------- /public/img/credit-cards/jcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/jcb.svg -------------------------------------------------------------------------------- /public/img/credit-cards/laser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/laser.svg -------------------------------------------------------------------------------- /public/img/credit-cards/maestro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/maestro.svg -------------------------------------------------------------------------------- /public/img/credit-cards/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/mastercard.svg -------------------------------------------------------------------------------- /public/img/credit-cards/oca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/oca.svg -------------------------------------------------------------------------------- /public/img/credit-cards/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/paypal.svg -------------------------------------------------------------------------------- /public/img/credit-cards/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/unknown.svg -------------------------------------------------------------------------------- /public/img/credit-cards/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/credit-cards/visa.svg -------------------------------------------------------------------------------- /public/img/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/favicon.ico -------------------------------------------------------------------------------- /public/img/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/img/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/favicons/site.webmanifest -------------------------------------------------------------------------------- /public/img/flags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AD.png -------------------------------------------------------------------------------- /public/img/flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AE.png -------------------------------------------------------------------------------- /public/img/flags/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AF.png -------------------------------------------------------------------------------- /public/img/flags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AG.png -------------------------------------------------------------------------------- /public/img/flags/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AI.png -------------------------------------------------------------------------------- /public/img/flags/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AL.png -------------------------------------------------------------------------------- /public/img/flags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AM.png -------------------------------------------------------------------------------- /public/img/flags/AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AN.png -------------------------------------------------------------------------------- /public/img/flags/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AO.png -------------------------------------------------------------------------------- /public/img/flags/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AQ.png -------------------------------------------------------------------------------- /public/img/flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AR.png -------------------------------------------------------------------------------- /public/img/flags/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AS.png -------------------------------------------------------------------------------- /public/img/flags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AT.png -------------------------------------------------------------------------------- /public/img/flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AU.png -------------------------------------------------------------------------------- /public/img/flags/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AW.png -------------------------------------------------------------------------------- /public/img/flags/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/AZ.png -------------------------------------------------------------------------------- /public/img/flags/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BA.png -------------------------------------------------------------------------------- /public/img/flags/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BB.png -------------------------------------------------------------------------------- /public/img/flags/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BD.png -------------------------------------------------------------------------------- /public/img/flags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BE.png -------------------------------------------------------------------------------- /public/img/flags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BF.png -------------------------------------------------------------------------------- /public/img/flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BG.png -------------------------------------------------------------------------------- /public/img/flags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BH.png -------------------------------------------------------------------------------- /public/img/flags/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BI.png -------------------------------------------------------------------------------- /public/img/flags/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BJ.png -------------------------------------------------------------------------------- /public/img/flags/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BM.png -------------------------------------------------------------------------------- /public/img/flags/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BN.png -------------------------------------------------------------------------------- /public/img/flags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BO.png -------------------------------------------------------------------------------- /public/img/flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BR.png -------------------------------------------------------------------------------- /public/img/flags/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BS.png -------------------------------------------------------------------------------- /public/img/flags/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BT.png -------------------------------------------------------------------------------- /public/img/flags/BV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BV.png -------------------------------------------------------------------------------- /public/img/flags/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BW.png -------------------------------------------------------------------------------- /public/img/flags/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BY.png -------------------------------------------------------------------------------- /public/img/flags/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/BZ.png -------------------------------------------------------------------------------- /public/img/flags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CA.png -------------------------------------------------------------------------------- /public/img/flags/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CC.png -------------------------------------------------------------------------------- /public/img/flags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CD.png -------------------------------------------------------------------------------- /public/img/flags/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CF.png -------------------------------------------------------------------------------- /public/img/flags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CG.png -------------------------------------------------------------------------------- /public/img/flags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CH.png -------------------------------------------------------------------------------- /public/img/flags/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CI.png -------------------------------------------------------------------------------- /public/img/flags/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CK.png -------------------------------------------------------------------------------- /public/img/flags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CL.png -------------------------------------------------------------------------------- /public/img/flags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CM.png -------------------------------------------------------------------------------- /public/img/flags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CN.png -------------------------------------------------------------------------------- /public/img/flags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CO.png -------------------------------------------------------------------------------- /public/img/flags/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CR.png -------------------------------------------------------------------------------- /public/img/flags/CS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CS.png -------------------------------------------------------------------------------- /public/img/flags/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CU.png -------------------------------------------------------------------------------- /public/img/flags/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CV.png -------------------------------------------------------------------------------- /public/img/flags/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CX.png -------------------------------------------------------------------------------- /public/img/flags/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CY.png -------------------------------------------------------------------------------- /public/img/flags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/CZ.png -------------------------------------------------------------------------------- /public/img/flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DE.png -------------------------------------------------------------------------------- /public/img/flags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DJ.png -------------------------------------------------------------------------------- /public/img/flags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DK.png -------------------------------------------------------------------------------- /public/img/flags/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DM.png -------------------------------------------------------------------------------- /public/img/flags/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DO.png -------------------------------------------------------------------------------- /public/img/flags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/DZ.png -------------------------------------------------------------------------------- /public/img/flags/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/EC.png -------------------------------------------------------------------------------- /public/img/flags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/EE.png -------------------------------------------------------------------------------- /public/img/flags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/EG.png -------------------------------------------------------------------------------- /public/img/flags/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/EH.png -------------------------------------------------------------------------------- /public/img/flags/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ER.png -------------------------------------------------------------------------------- /public/img/flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ES.png -------------------------------------------------------------------------------- /public/img/flags/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ET.png -------------------------------------------------------------------------------- /public/img/flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FI.png -------------------------------------------------------------------------------- /public/img/flags/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FJ.png -------------------------------------------------------------------------------- /public/img/flags/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FK.png -------------------------------------------------------------------------------- /public/img/flags/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FM.png -------------------------------------------------------------------------------- /public/img/flags/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FO.png -------------------------------------------------------------------------------- /public/img/flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/FR.png -------------------------------------------------------------------------------- /public/img/flags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GA.png -------------------------------------------------------------------------------- /public/img/flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GB.png -------------------------------------------------------------------------------- /public/img/flags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GD.png -------------------------------------------------------------------------------- /public/img/flags/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GE.png -------------------------------------------------------------------------------- /public/img/flags/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GF.png -------------------------------------------------------------------------------- /public/img/flags/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GH.png -------------------------------------------------------------------------------- /public/img/flags/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GI.png -------------------------------------------------------------------------------- /public/img/flags/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GL.png -------------------------------------------------------------------------------- /public/img/flags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GM.png -------------------------------------------------------------------------------- /public/img/flags/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GN.png -------------------------------------------------------------------------------- /public/img/flags/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GP.png -------------------------------------------------------------------------------- /public/img/flags/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GQ.png -------------------------------------------------------------------------------- /public/img/flags/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GR.png -------------------------------------------------------------------------------- /public/img/flags/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GS.png -------------------------------------------------------------------------------- /public/img/flags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GT.png -------------------------------------------------------------------------------- /public/img/flags/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GU.png -------------------------------------------------------------------------------- /public/img/flags/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GW.png -------------------------------------------------------------------------------- /public/img/flags/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/GY.png -------------------------------------------------------------------------------- /public/img/flags/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HK.png -------------------------------------------------------------------------------- /public/img/flags/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HM.png -------------------------------------------------------------------------------- /public/img/flags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HN.png -------------------------------------------------------------------------------- /public/img/flags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HR.png -------------------------------------------------------------------------------- /public/img/flags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HT.png -------------------------------------------------------------------------------- /public/img/flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/HU.png -------------------------------------------------------------------------------- /public/img/flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ID.png -------------------------------------------------------------------------------- /public/img/flags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IE.png -------------------------------------------------------------------------------- /public/img/flags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IL.png -------------------------------------------------------------------------------- /public/img/flags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IN.png -------------------------------------------------------------------------------- /public/img/flags/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IO.png -------------------------------------------------------------------------------- /public/img/flags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IQ.png -------------------------------------------------------------------------------- /public/img/flags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IR.png -------------------------------------------------------------------------------- /public/img/flags/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IS.png -------------------------------------------------------------------------------- /public/img/flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/IT.png -------------------------------------------------------------------------------- /public/img/flags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/JM.png -------------------------------------------------------------------------------- /public/img/flags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/JO.png -------------------------------------------------------------------------------- /public/img/flags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/JP.png -------------------------------------------------------------------------------- /public/img/flags/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KE.png -------------------------------------------------------------------------------- /public/img/flags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KG.png -------------------------------------------------------------------------------- /public/img/flags/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KH.png -------------------------------------------------------------------------------- /public/img/flags/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KI.png -------------------------------------------------------------------------------- /public/img/flags/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KM.png -------------------------------------------------------------------------------- /public/img/flags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KN.png -------------------------------------------------------------------------------- /public/img/flags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KP.png -------------------------------------------------------------------------------- /public/img/flags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KR.png -------------------------------------------------------------------------------- /public/img/flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KW.png -------------------------------------------------------------------------------- /public/img/flags/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KY.png -------------------------------------------------------------------------------- /public/img/flags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/KZ.png -------------------------------------------------------------------------------- /public/img/flags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LA.png -------------------------------------------------------------------------------- /public/img/flags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LB.png -------------------------------------------------------------------------------- /public/img/flags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LC.png -------------------------------------------------------------------------------- /public/img/flags/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LI.png -------------------------------------------------------------------------------- /public/img/flags/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LK.png -------------------------------------------------------------------------------- /public/img/flags/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LR.png -------------------------------------------------------------------------------- /public/img/flags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LS.png -------------------------------------------------------------------------------- /public/img/flags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LT.png -------------------------------------------------------------------------------- /public/img/flags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LU.png -------------------------------------------------------------------------------- /public/img/flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LV.png -------------------------------------------------------------------------------- /public/img/flags/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/LY.png -------------------------------------------------------------------------------- /public/img/flags/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MA.png -------------------------------------------------------------------------------- /public/img/flags/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MC.png -------------------------------------------------------------------------------- /public/img/flags/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MD.png -------------------------------------------------------------------------------- /public/img/flags/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ME.png -------------------------------------------------------------------------------- /public/img/flags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MG.png -------------------------------------------------------------------------------- /public/img/flags/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MH.png -------------------------------------------------------------------------------- /public/img/flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MK.png -------------------------------------------------------------------------------- /public/img/flags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ML.png -------------------------------------------------------------------------------- /public/img/flags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MM.png -------------------------------------------------------------------------------- /public/img/flags/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MN.png -------------------------------------------------------------------------------- /public/img/flags/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MO.png -------------------------------------------------------------------------------- /public/img/flags/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MP.png -------------------------------------------------------------------------------- /public/img/flags/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MQ.png -------------------------------------------------------------------------------- /public/img/flags/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MR.png -------------------------------------------------------------------------------- /public/img/flags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MS.png -------------------------------------------------------------------------------- /public/img/flags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MT.png -------------------------------------------------------------------------------- /public/img/flags/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MU.png -------------------------------------------------------------------------------- /public/img/flags/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MV.png -------------------------------------------------------------------------------- /public/img/flags/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MW.png -------------------------------------------------------------------------------- /public/img/flags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MX.png -------------------------------------------------------------------------------- /public/img/flags/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MY.png -------------------------------------------------------------------------------- /public/img/flags/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/MZ.png -------------------------------------------------------------------------------- /public/img/flags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NA.png -------------------------------------------------------------------------------- /public/img/flags/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NC.png -------------------------------------------------------------------------------- /public/img/flags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NE.png -------------------------------------------------------------------------------- /public/img/flags/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NF.png -------------------------------------------------------------------------------- /public/img/flags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NG.png -------------------------------------------------------------------------------- /public/img/flags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NI.png -------------------------------------------------------------------------------- /public/img/flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NL.png -------------------------------------------------------------------------------- /public/img/flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NO.png -------------------------------------------------------------------------------- /public/img/flags/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NP.png -------------------------------------------------------------------------------- /public/img/flags/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NR.png -------------------------------------------------------------------------------- /public/img/flags/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NU.png -------------------------------------------------------------------------------- /public/img/flags/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/NZ.png -------------------------------------------------------------------------------- /public/img/flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/OM.png -------------------------------------------------------------------------------- /public/img/flags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PA.png -------------------------------------------------------------------------------- /public/img/flags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PE.png -------------------------------------------------------------------------------- /public/img/flags/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PF.png -------------------------------------------------------------------------------- /public/img/flags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PG.png -------------------------------------------------------------------------------- /public/img/flags/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PH.png -------------------------------------------------------------------------------- /public/img/flags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PK.png -------------------------------------------------------------------------------- /public/img/flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PL.png -------------------------------------------------------------------------------- /public/img/flags/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PM.png -------------------------------------------------------------------------------- /public/img/flags/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PN.png -------------------------------------------------------------------------------- /public/img/flags/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PR.png -------------------------------------------------------------------------------- /public/img/flags/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PS.png -------------------------------------------------------------------------------- /public/img/flags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PT.png -------------------------------------------------------------------------------- /public/img/flags/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PW.png -------------------------------------------------------------------------------- /public/img/flags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/PY.png -------------------------------------------------------------------------------- /public/img/flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/QA.png -------------------------------------------------------------------------------- /public/img/flags/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/RE.png -------------------------------------------------------------------------------- /public/img/flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/RO.png -------------------------------------------------------------------------------- /public/img/flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/RU.png -------------------------------------------------------------------------------- /public/img/flags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/RW.png -------------------------------------------------------------------------------- /public/img/flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SA.png -------------------------------------------------------------------------------- /public/img/flags/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SB.png -------------------------------------------------------------------------------- /public/img/flags/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SC.png -------------------------------------------------------------------------------- /public/img/flags/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SD.png -------------------------------------------------------------------------------- /public/img/flags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SE.png -------------------------------------------------------------------------------- /public/img/flags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SG.png -------------------------------------------------------------------------------- /public/img/flags/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SH.png -------------------------------------------------------------------------------- /public/img/flags/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SI.png -------------------------------------------------------------------------------- /public/img/flags/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SJ.png -------------------------------------------------------------------------------- /public/img/flags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SK.png -------------------------------------------------------------------------------- /public/img/flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SL.png -------------------------------------------------------------------------------- /public/img/flags/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SM.png -------------------------------------------------------------------------------- /public/img/flags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SN.png -------------------------------------------------------------------------------- /public/img/flags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SO.png -------------------------------------------------------------------------------- /public/img/flags/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SR.png -------------------------------------------------------------------------------- /public/img/flags/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ST.png -------------------------------------------------------------------------------- /public/img/flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SV.png -------------------------------------------------------------------------------- /public/img/flags/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SY.png -------------------------------------------------------------------------------- /public/img/flags/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/SZ.png -------------------------------------------------------------------------------- /public/img/flags/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TC.png -------------------------------------------------------------------------------- /public/img/flags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TD.png -------------------------------------------------------------------------------- /public/img/flags/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TF.png -------------------------------------------------------------------------------- /public/img/flags/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TG.png -------------------------------------------------------------------------------- /public/img/flags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TH.png -------------------------------------------------------------------------------- /public/img/flags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TJ.png -------------------------------------------------------------------------------- /public/img/flags/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TK.png -------------------------------------------------------------------------------- /public/img/flags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TL.png -------------------------------------------------------------------------------- /public/img/flags/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TM.png -------------------------------------------------------------------------------- /public/img/flags/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TN.png -------------------------------------------------------------------------------- /public/img/flags/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TO.png -------------------------------------------------------------------------------- /public/img/flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TR.png -------------------------------------------------------------------------------- /public/img/flags/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TT.png -------------------------------------------------------------------------------- /public/img/flags/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TV.png -------------------------------------------------------------------------------- /public/img/flags/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TW.png -------------------------------------------------------------------------------- /public/img/flags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/TZ.png -------------------------------------------------------------------------------- /public/img/flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/UA.png -------------------------------------------------------------------------------- /public/img/flags/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/UG.png -------------------------------------------------------------------------------- /public/img/flags/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/UM.png -------------------------------------------------------------------------------- /public/img/flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/US.png -------------------------------------------------------------------------------- /public/img/flags/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/UY.png -------------------------------------------------------------------------------- /public/img/flags/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/UZ.png -------------------------------------------------------------------------------- /public/img/flags/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VA.png -------------------------------------------------------------------------------- /public/img/flags/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VC.png -------------------------------------------------------------------------------- /public/img/flags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VE.png -------------------------------------------------------------------------------- /public/img/flags/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VG.png -------------------------------------------------------------------------------- /public/img/flags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VI.png -------------------------------------------------------------------------------- /public/img/flags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VN.png -------------------------------------------------------------------------------- /public/img/flags/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/VU.png -------------------------------------------------------------------------------- /public/img/flags/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/WF.png -------------------------------------------------------------------------------- /public/img/flags/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/WS.png -------------------------------------------------------------------------------- /public/img/flags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/YE.png -------------------------------------------------------------------------------- /public/img/flags/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/YT.png -------------------------------------------------------------------------------- /public/img/flags/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ZA.png -------------------------------------------------------------------------------- /public/img/flags/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ZM.png -------------------------------------------------------------------------------- /public/img/flags/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/flags/ZW.png -------------------------------------------------------------------------------- /public/img/img-not-found-_x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/img-not-found-_x22.png -------------------------------------------------------------------------------- /public/img/img-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/img-not-found.png -------------------------------------------------------------------------------- /public/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/logo-white.svg -------------------------------------------------------------------------------- /public/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/logo.jpg -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/search-by-algolia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/search-by-algolia.svg -------------------------------------------------------------------------------- /public/img/shopper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/shopper.svg -------------------------------------------------------------------------------- /public/img/skeletons/html/airmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/airmail.png -------------------------------------------------------------------------------- /public/img/skeletons/html/cerberus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/cerberus.png -------------------------------------------------------------------------------- /public/img/skeletons/html/cleave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/cleave.jpg -------------------------------------------------------------------------------- /public/img/skeletons/html/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/go.png -------------------------------------------------------------------------------- /public/img/skeletons/html/goldstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/goldstar.png -------------------------------------------------------------------------------- /public/img/skeletons/html/mantra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/mantra.png -------------------------------------------------------------------------------- /public/img/skeletons/html/meow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/meow.png -------------------------------------------------------------------------------- /public/img/skeletons/html/narrative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/narrative.jpg -------------------------------------------------------------------------------- /public/img/skeletons/html/neopolitan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/neopolitan.png -------------------------------------------------------------------------------- /public/img/skeletons/html/oxygen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/oxygen.jpg -------------------------------------------------------------------------------- /public/img/skeletons/html/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/plain.png -------------------------------------------------------------------------------- /public/img/skeletons/html/skyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/skyline.png -------------------------------------------------------------------------------- /public/img/skeletons/html/sunday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/sunday.png -------------------------------------------------------------------------------- /public/img/skeletons/html/zenflat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/html/zenflat.jpg -------------------------------------------------------------------------------- /public/img/skeletons/markdown/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/markdown/plain.png -------------------------------------------------------------------------------- /public/img/skeletons/markdown/postmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/markdown/postmark.png -------------------------------------------------------------------------------- /public/img/skeletons/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/img/skeletons/no-image.png -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/js/login.js -------------------------------------------------------------------------------- /public/js/login.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/js/login.js.map -------------------------------------------------------------------------------- /public/js/shopper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/js/shopper.js -------------------------------------------------------------------------------- /public/js/shopper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/js/shopper.js.map -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/NavbarSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/NavbarSearch.jsx -------------------------------------------------------------------------------- /resources/js/components/ShopperComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/ShopperComponent.jsx -------------------------------------------------------------------------------- /resources/js/components/TextEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/TextEditor.jsx -------------------------------------------------------------------------------- /resources/js/components/banners/BannerForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/banners/BannerForm.jsx -------------------------------------------------------------------------------- /resources/js/components/banners/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/banners/fields.js -------------------------------------------------------------------------------- /resources/js/components/banners/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/banners/validation.js -------------------------------------------------------------------------------- /resources/js/components/brands/BrandForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/brands/BrandForm.jsx -------------------------------------------------------------------------------- /resources/js/components/brands/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/brands/fields.js -------------------------------------------------------------------------------- /resources/js/components/brands/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/brands/validation.js -------------------------------------------------------------------------------- /resources/js/components/categories/CategoryForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/categories/CategoryForm.jsx -------------------------------------------------------------------------------- /resources/js/components/categories/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/categories/fields.js -------------------------------------------------------------------------------- /resources/js/components/categories/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/categories/validation.js -------------------------------------------------------------------------------- /resources/js/components/locations/CountryForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/locations/CountryForm.jsx -------------------------------------------------------------------------------- /resources/js/components/locations/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/locations/columns.js -------------------------------------------------------------------------------- /resources/js/components/locations/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/locations/fields.js -------------------------------------------------------------------------------- /resources/js/components/locations/stateFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/locations/stateFields.js -------------------------------------------------------------------------------- /resources/js/components/locations/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/locations/validation.js -------------------------------------------------------------------------------- /resources/js/components/login/Notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/login/Notification.jsx -------------------------------------------------------------------------------- /resources/js/components/orders/OrderForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/OrderForm.jsx -------------------------------------------------------------------------------- /resources/js/components/orders/PaymentForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/PaymentForm.jsx -------------------------------------------------------------------------------- /resources/js/components/orders/ShippingTypeForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/ShippingTypeForm.jsx -------------------------------------------------------------------------------- /resources/js/components/orders/StatusForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/StatusForm.jsx -------------------------------------------------------------------------------- /resources/js/components/orders/orders/Price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/Price.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/buyerColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/buyerColumns.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/columns.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/fields.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/offerFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/offerFields.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/offerValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/offerValidation.js -------------------------------------------------------------------------------- /resources/js/components/orders/orders/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/orders/validation.js -------------------------------------------------------------------------------- /resources/js/components/orders/payments/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/payments/fields.js -------------------------------------------------------------------------------- /resources/js/components/orders/payments/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/payments/validation.js -------------------------------------------------------------------------------- /resources/js/components/orders/shipping/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/shipping/fields.js -------------------------------------------------------------------------------- /resources/js/components/orders/shipping/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/shipping/validation.js -------------------------------------------------------------------------------- /resources/js/components/orders/status/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/status/fields.js -------------------------------------------------------------------------------- /resources/js/components/orders/status/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/orders/status/validation.js -------------------------------------------------------------------------------- /resources/js/components/products/ProductForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/ProductForm.jsx -------------------------------------------------------------------------------- /resources/js/components/products/SocialShare.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/SocialShare.jsx -------------------------------------------------------------------------------- /resources/js/components/products/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/columns.js -------------------------------------------------------------------------------- /resources/js/components/products/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/fields.js -------------------------------------------------------------------------------- /resources/js/components/products/offerFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/offerFields.js -------------------------------------------------------------------------------- /resources/js/components/products/offerValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/offerValidation.js -------------------------------------------------------------------------------- /resources/js/components/products/productsColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/productsColumns.js -------------------------------------------------------------------------------- /resources/js/components/products/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/products/validation.js -------------------------------------------------------------------------------- /resources/js/components/promo/CouponForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/CouponForm.jsx -------------------------------------------------------------------------------- /resources/js/components/promo/DiscountForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/DiscountForm.jsx -------------------------------------------------------------------------------- /resources/js/components/promo/coupons/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/coupons/fields.js -------------------------------------------------------------------------------- /resources/js/components/promo/coupons/productFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/coupons/productFields.js -------------------------------------------------------------------------------- /resources/js/components/promo/coupons/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/coupons/validation.js -------------------------------------------------------------------------------- /resources/js/components/promo/discounts/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/discounts/fields.js -------------------------------------------------------------------------------- /resources/js/components/promo/discounts/offerFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/discounts/offerFields.js -------------------------------------------------------------------------------- /resources/js/components/promo/discounts/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/promo/discounts/validation.js -------------------------------------------------------------------------------- /resources/js/components/reviews/ReviewForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/reviews/ReviewForm.jsx -------------------------------------------------------------------------------- /resources/js/components/reviews/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/reviews/fields.js -------------------------------------------------------------------------------- /resources/js/components/reviews/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/reviews/validation.js -------------------------------------------------------------------------------- /resources/js/components/sizes/SizeForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/sizes/SizeForm.jsx -------------------------------------------------------------------------------- /resources/js/components/sizes/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/sizes/fields.js -------------------------------------------------------------------------------- /resources/js/components/sizes/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/sizes/validation.js -------------------------------------------------------------------------------- /resources/js/components/tags/TagFrom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/tags/TagFrom.jsx -------------------------------------------------------------------------------- /resources/js/components/tags/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/tags/fields.js -------------------------------------------------------------------------------- /resources/js/components/tags/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/tags/validation.js -------------------------------------------------------------------------------- /resources/js/components/users/AdministratorForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/AdministratorForm.jsx -------------------------------------------------------------------------------- /resources/js/components/users/AdministratorProfileForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/AdministratorProfileForm.jsx -------------------------------------------------------------------------------- /resources/js/components/users/UserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/UserForm.jsx -------------------------------------------------------------------------------- /resources/js/components/users/addressFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/addressFields.js -------------------------------------------------------------------------------- /resources/js/components/users/addressValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/addressValidation.js -------------------------------------------------------------------------------- /resources/js/components/users/addressesColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/addressesColumns.js -------------------------------------------------------------------------------- /resources/js/components/users/adminFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/adminFields.js -------------------------------------------------------------------------------- /resources/js/components/users/columns/balanceColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/columns/balanceColumns.js -------------------------------------------------------------------------------- /resources/js/components/users/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/fields.js -------------------------------------------------------------------------------- /resources/js/components/users/forms/transactionForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/forms/transactionForm.js -------------------------------------------------------------------------------- /resources/js/components/users/ordersColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/components/users/ordersColumns.js -------------------------------------------------------------------------------- /resources/js/helpers/slugify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/helpers/slugify.js -------------------------------------------------------------------------------- /resources/js/helpers/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/helpers/translate.js -------------------------------------------------------------------------------- /resources/js/libs/file-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/libs/file-manager.js -------------------------------------------------------------------------------- /resources/js/libs/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/libs/pace.js -------------------------------------------------------------------------------- /resources/js/libs/slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/libs/slug.js -------------------------------------------------------------------------------- /resources/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/login.js -------------------------------------------------------------------------------- /resources/js/shopper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/js/shopper.js -------------------------------------------------------------------------------- /resources/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/lang/en.json -------------------------------------------------------------------------------- /resources/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/lang/fr.json -------------------------------------------------------------------------------- /resources/sass/_custom-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/_custom-styles.scss -------------------------------------------------------------------------------- /resources/sass/_custom-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/_custom-variables.scss -------------------------------------------------------------------------------- /resources/sass/colors/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/colors/_colors.scss -------------------------------------------------------------------------------- /resources/sass/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/components/_card.scss -------------------------------------------------------------------------------- /resources/sass/components/_pace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/components/_pace.scss -------------------------------------------------------------------------------- /resources/sass/components/_product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/components/_product.scss -------------------------------------------------------------------------------- /resources/sass/components/algolia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/components/algolia.scss -------------------------------------------------------------------------------- /resources/sass/components/dropzone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/components/dropzone.scss -------------------------------------------------------------------------------- /resources/sass/core/arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/arrow.scss -------------------------------------------------------------------------------- /resources/sass/core/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/buttons.scss -------------------------------------------------------------------------------- /resources/sass/core/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/components.scss -------------------------------------------------------------------------------- /resources/sass/core/element-react.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/element-react.scss -------------------------------------------------------------------------------- /resources/sass/core/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/form.scss -------------------------------------------------------------------------------- /resources/sass/core/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/item.scss -------------------------------------------------------------------------------- /resources/sass/core/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/layout.scss -------------------------------------------------------------------------------- /resources/sass/core/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/login.scss -------------------------------------------------------------------------------- /resources/sass/core/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/mixins.scss -------------------------------------------------------------------------------- /resources/sass/core/modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/modals.scss -------------------------------------------------------------------------------- /resources/sass/core/nav.offscreen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/nav.offscreen.scss -------------------------------------------------------------------------------- /resources/sass/core/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/nav.scss -------------------------------------------------------------------------------- /resources/sass/core/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/reset.scss -------------------------------------------------------------------------------- /resources/sass/core/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/tables.scss -------------------------------------------------------------------------------- /resources/sass/core/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/core/utilities.scss -------------------------------------------------------------------------------- /resources/sass/hljs-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/hljs-styles.scss -------------------------------------------------------------------------------- /resources/sass/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/login.scss -------------------------------------------------------------------------------- /resources/sass/maileclipse-app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/maileclipse-app.scss -------------------------------------------------------------------------------- /resources/sass/pages/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/pages/dashboard.scss -------------------------------------------------------------------------------- /resources/sass/pages/file-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/pages/file-manager.css -------------------------------------------------------------------------------- /resources/sass/pages/transfert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/pages/transfert.scss -------------------------------------------------------------------------------- /resources/sass/plugins/notfound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/plugins/notfound.scss -------------------------------------------------------------------------------- /resources/sass/plugins/notie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/plugins/notie.scss -------------------------------------------------------------------------------- /resources/sass/plugins/plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/plugins/plugin.scss -------------------------------------------------------------------------------- /resources/sass/shopper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/shopper.scss -------------------------------------------------------------------------------- /resources/sass/theme/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/sass/theme/_variables.scss -------------------------------------------------------------------------------- /resources/views/components/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/components/flash.blade.php -------------------------------------------------------------------------------- /resources/views/components/menu/leftMenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/components/menu/leftMenu.blade.php -------------------------------------------------------------------------------- /resources/views/components/menu/leftSubMenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/components/menu/leftSubMenu.blade.php -------------------------------------------------------------------------------- /resources/views/components/menu/mainMenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/components/menu/mainMenu.blade.php -------------------------------------------------------------------------------- /resources/views/components/notifications.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/paginations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/components/paginations.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/layouts/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/emptydata.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/layouts/emptydata.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/pages/backend/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/backend/roles/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/backend/users/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/backend/users/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/backend/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/backend/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/backend/users/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/backend/users/profile.blade.php -------------------------------------------------------------------------------- /resources/views/pages/banners/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/banners/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/banners/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/banners/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/brands/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/brands/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/brands/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/brands/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/categories/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/categories/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard/_algolia-indices.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/dashboard/_algolia-indices.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard/e-commerce.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/dashboard/e-commerce.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/filemanager/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/filemanager/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/logs/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/logs/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/config.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/config.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/draft/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /resources/views/pages/mails/previewerror.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/previewerror.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/create-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/create-template.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/edit-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/edit-template.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/mailables.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/mailables.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/new-template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/new-template.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/templates.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/templates.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/sections/view-mailable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/sections/view-mailable.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/upsell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/upsell.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/airmail/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/airmail/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cerberus/fluid.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cerberus/fluid.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cerberus/hybrid.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cerberus/hybrid.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/progress.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/progress.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/reignite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/reignite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/upsell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/upsell.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/cleave/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/cleave/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/progress.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/progress.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/reignite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/reignite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/upsell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/upsell.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/go/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/go/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/goldstar/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/goldstar/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/goldstar/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/goldstar/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/goldstar/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/goldstar/update.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/birthday.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/birthday.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/coupon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/coupon.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/progress.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/progress.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/rating.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/rating.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/receipt.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/receipt.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/shipped.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/shipped.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/update.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/mantra/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/mantra/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/coupon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/coupon.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/progress.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/progress.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/receipt.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/receipt.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/two-column.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/two-column.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/meow/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/meow/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/narrative/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/narrative/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/neopolitan/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/neopolitan/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/progress.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/progress.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/reignite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/reignite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/upsell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/upsell.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/oxygen/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/oxygen/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/plain/plain.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/plain/plain.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/skyline/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/skyline/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/skyline/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/skyline/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/sunday/invite.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/sunday/invite.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/sunday/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/sunday/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/sunday/survey.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/sunday/survey.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/sunday/upsell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/sunday/upsell.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/skeletons/html/zenflat/ping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/mails/skeletons/html/zenflat/ping.blade.php -------------------------------------------------------------------------------- /resources/views/pages/mails/templates/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /resources/views/pages/orders/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/payments/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/payments/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/payments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/payments/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/shipping/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/shipping/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/shipping/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/shipping/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/status/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/status/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/orders/status/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/orders/status/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/products/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/products/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/products/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/products/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/promo/coupons/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/promo/coupons/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/promo/coupons/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/promo/coupons/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/promo/discounts/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/promo/discounts/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/promo/discounts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/promo/discounts/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/reviews/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/reviews/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/reviews/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/reviews/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/base/algolia.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/base/algolia.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/base/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/base/base.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/base/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/base/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/base/info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/base/info.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/base/social.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/base/social.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/locations/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/locations/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/settings/locations/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/settings/locations/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/sizes/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/sizes/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/sizes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/sizes/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/tags/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/tags/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/tags/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/tags/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/translate/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/translate/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/users/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/users/form.blade.php -------------------------------------------------------------------------------- /resources/views/pages/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/working.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/pages/working.blade.php -------------------------------------------------------------------------------- /resources/views/partials/auth/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/partials/auth/footer.blade.php -------------------------------------------------------------------------------- /resources/views/partials/auth/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/partials/auth/logo.blade.php -------------------------------------------------------------------------------- /resources/views/partials/layouts/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/partials/layouts/header.blade.php -------------------------------------------------------------------------------- /resources/views/partials/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/partials/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/partials/paginations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/resources/views/partials/paginations.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/routes/backend.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Commands/CreateAdminCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Commands/CreateAdminCommand.php -------------------------------------------------------------------------------- /src/Commands/InstallShopperCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Commands/InstallShopperCommand.php -------------------------------------------------------------------------------- /src/Commands/PublicLinkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Commands/PublicLinkCommand.php -------------------------------------------------------------------------------- /src/Core/EnvironmentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/EnvironmentManager.php -------------------------------------------------------------------------------- /src/Core/Facebook/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Facebook/Api.php -------------------------------------------------------------------------------- /src/Core/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/FileManager.php -------------------------------------------------------------------------------- /src/Core/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Menu.php -------------------------------------------------------------------------------- /src/Core/SendTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/SendTo.php -------------------------------------------------------------------------------- /src/Core/Services/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Services/Zip.php -------------------------------------------------------------------------------- /src/Core/ShopperMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/ShopperMail.php -------------------------------------------------------------------------------- /src/Core/Twitter/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Twitter/Api.php -------------------------------------------------------------------------------- /src/Core/Twitter/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Twitter/OAuth.php -------------------------------------------------------------------------------- /src/Core/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Core/Version.php -------------------------------------------------------------------------------- /src/Events/ImageResize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Events/ImageResize.php -------------------------------------------------------------------------------- /src/Facades/Shopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Facades/Shopper.php -------------------------------------------------------------------------------- /src/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Helpers/helpers.php -------------------------------------------------------------------------------- /src/Http/Composers/MenuComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Composers/MenuComposer.php -------------------------------------------------------------------------------- /src/Http/Composers/ProfileComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Composers/ProfileComposer.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Auth/LoginController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/CountryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/CountryController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/DashboardController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/FileManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/FileManagerController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/LogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/LogController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Mails/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Mails/Configuration.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Mails/MailablesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Mails/MailablesController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/Mails/TemplatesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/Mails/TemplatesController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/MediaController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/RoleController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/SettingController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/StateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/StateController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/TranslateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/TranslateController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Backend/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Backend/UserController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/Http/Middleware/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Middleware/Dashboard.php -------------------------------------------------------------------------------- /src/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /src/Http/Requests/BaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/BaseRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/CountryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/CountryRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/CustomErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/CustomErrorMessage.php -------------------------------------------------------------------------------- /src/Http/Requests/ProfileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/ProfileRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/RequestValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/RequestValidator.php -------------------------------------------------------------------------------- /src/Http/Requests/RoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/RoleRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/StateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/StateRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /src/Listeners/ImageCropped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Listeners/ImageCropped.php -------------------------------------------------------------------------------- /src/Models/AccessLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/AccessLog.php -------------------------------------------------------------------------------- /src/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Country.php -------------------------------------------------------------------------------- /src/Models/MailTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/MailTemplate.php -------------------------------------------------------------------------------- /src/Models/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Media.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentActivation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentActivation.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentPersistence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentPersistence.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentReminder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentReminder.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentRole.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentThrottle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentThrottle.php -------------------------------------------------------------------------------- /src/Models/Sentinel/EloquentUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/EloquentUser.php -------------------------------------------------------------------------------- /src/Models/Sentinel/StandardPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Sentinel/StandardPermissions.php -------------------------------------------------------------------------------- /src/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/Setting.php -------------------------------------------------------------------------------- /src/Models/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Models/State.php -------------------------------------------------------------------------------- /src/Notifications/ReminderEmailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Notifications/ReminderEmailSender.php -------------------------------------------------------------------------------- /src/Notifications/UserCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Notifications/UserCredentials.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/BannerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/BannerController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/BrandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/BrandController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/OfferController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/OfferController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/ProductController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/PromotionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/PromotionController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/ReviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/ReviewController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Controllers/SizeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Controllers/SizeController.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/BannerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/BannerRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/BrandRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/BrandRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/CategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/CategoryRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/ProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/ProductRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/ReviewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/ReviewRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Http/Requests/SizeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Http/Requests/SizeRequest.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Banner.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Brand.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Category.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Offer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Offer.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Product.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/ProductRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/ProductRelation.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Review.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Models/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Models/Size.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Observers/BannerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Observers/BannerObserver.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Observers/BrandObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Observers/BrandObserver.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Observers/CategoryObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Observers/CategoryObserver.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Observers/ProductObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Observers/ProductObserver.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Observers/SizeObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Observers/SizeObserver.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Providers/CatalogueServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Providers/CatalogueServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/BannerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/BannerRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/BrandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/BrandRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/CategoryRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/OfferRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/OfferRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/ProductRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/ReviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/ReviewRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Repositories/SizeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Repositories/SizeRepository.php -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Resources/Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Resources/Lang/en.json -------------------------------------------------------------------------------- /src/Plugins/Catalogue/Resources/Lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/Resources/Lang/fr.json -------------------------------------------------------------------------------- /src/Plugins/Catalogue/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/plugin.json -------------------------------------------------------------------------------- /src/Plugins/Catalogue/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Catalogue/routes.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Helpers/PriceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Helpers/PriceHelper.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Controllers/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Controllers/OrderController.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Controllers/PaymentMethodController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Controllers/PaymentMethodController.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Controllers/ShippingTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Controllers/ShippingTypeController.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Controllers/StatusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Controllers/StatusController.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Requests/OrderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Requests/OrderRequest.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Requests/PaymentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Requests/PaymentRequest.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Requests/ShippingTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Requests/ShippingTypeRequest.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Http/Requests/StatusRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Http/Requests/StatusRequest.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/Cart.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/CartContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/CartContent.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/Order.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/OrderContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/OrderContent.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/PaymentMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/PaymentMethod.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/ShippingType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/ShippingType.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/Status.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/Wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/Wishlist.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Models/WishlistContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Models/WishlistContent.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Observers/OrderObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Observers/OrderObserver.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Providers/OrderServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Providers/OrderServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/CartRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/CartRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/OrderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/OrderRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/PaymentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/PaymentRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/ShippingTypeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/ShippingTypeRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/StatusRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/StatusRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Repositories/WishlistRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Repositories/WishlistRepository.php -------------------------------------------------------------------------------- /src/Plugins/Orders/Resources/Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Resources/Lang/en.json -------------------------------------------------------------------------------- /src/Plugins/Orders/Resources/Lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Resources/Lang/fr.json -------------------------------------------------------------------------------- /src/Plugins/Orders/Transformers/OrderTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/Transformers/OrderTransformer.php -------------------------------------------------------------------------------- /src/Plugins/Orders/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/plugin.json -------------------------------------------------------------------------------- /src/Plugins/Orders/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Orders/routes.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Http/Controllers/CouponController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Http/Controllers/CouponController.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Http/Controllers/DiscountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Http/Controllers/DiscountController.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Http/Requests/CouponRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Http/Requests/CouponRequest.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Http/Requests/DiscountRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Http/Requests/DiscountRequest.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Models/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Models/Coupon.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Models/CouponRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Models/CouponRelation.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Models/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Models/Discount.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Observers/CouponObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Observers/CouponObserver.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Providers/PromoServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Providers/PromoServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Repositories/CouponRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Repositories/CouponRepository.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Repositories/DiscountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Repositories/DiscountRepository.php -------------------------------------------------------------------------------- /src/Plugins/Promo/Resources/Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Resources/Lang/en.json -------------------------------------------------------------------------------- /src/Plugins/Promo/Resources/Lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/Resources/Lang/fr.json -------------------------------------------------------------------------------- /src/Plugins/Promo/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/plugin.json -------------------------------------------------------------------------------- /src/Plugins/Promo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Promo/routes.php -------------------------------------------------------------------------------- /src/Plugins/ShopperPluginServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/ShopperPluginServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Http/Controllers/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Http/Controllers/TagController.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Http/Requests/TagRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Http/Requests/TagRequest.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Models/Tag.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Models/TagRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Models/TagRelation.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Observers/TagObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Observers/TagObserver.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Providers/TagServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Providers/TagServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Repositories/TagRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Repositories/TagRepository.php -------------------------------------------------------------------------------- /src/Plugins/Tags/Resources/Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Resources/Lang/en.json -------------------------------------------------------------------------------- /src/Plugins/Tags/Resources/Lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/Resources/Lang/fr.json -------------------------------------------------------------------------------- /src/Plugins/Tags/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/plugin.json -------------------------------------------------------------------------------- /src/Plugins/Tags/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Tags/routes.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Controllers/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Controllers/AddressController.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Controllers/BalanceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Controllers/BalanceController.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Requests/AddressRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Requests/AddressRequest.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Requests/BalanceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Requests/BalanceRequest.php -------------------------------------------------------------------------------- /src/Plugins/Users/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /src/Plugins/Users/Models/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Models/Address.php -------------------------------------------------------------------------------- /src/Plugins/Users/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Models/Transaction.php -------------------------------------------------------------------------------- /src/Plugins/Users/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Models/User.php -------------------------------------------------------------------------------- /src/Plugins/Users/Models/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Models/Wallet.php -------------------------------------------------------------------------------- /src/Plugins/Users/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Observers/UserObserver.php -------------------------------------------------------------------------------- /src/Plugins/Users/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Users/Providers/UserServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Providers/UserServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Users/Repositories/AddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Repositories/AddressRepository.php -------------------------------------------------------------------------------- /src/Plugins/Users/Repositories/BalanceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Repositories/BalanceRepository.php -------------------------------------------------------------------------------- /src/Plugins/Users/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Repositories/UserRepository.php -------------------------------------------------------------------------------- /src/Plugins/Users/Resources/Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Resources/Lang/en.json -------------------------------------------------------------------------------- /src/Plugins/Users/Resources/Lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Resources/Lang/fr.json -------------------------------------------------------------------------------- /src/Plugins/Users/Traits/HasWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/Traits/HasWallet.php -------------------------------------------------------------------------------- /src/Plugins/Users/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/plugin.json -------------------------------------------------------------------------------- /src/Plugins/Users/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Plugins/Users/routes.php -------------------------------------------------------------------------------- /src/Providers/ComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Providers/ComposerServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/ConsoleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Providers/ConsoleServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Repositories/CountryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Repositories/CountryRepository.php -------------------------------------------------------------------------------- /src/Repositories/MediaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Repositories/MediaRepository.php -------------------------------------------------------------------------------- /src/Repositories/RoleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Repositories/RoleRepository.php -------------------------------------------------------------------------------- /src/Repositories/StateRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Repositories/StateRepository.php -------------------------------------------------------------------------------- /src/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Repositories/UserRepository.php -------------------------------------------------------------------------------- /src/Shopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Shopper.php -------------------------------------------------------------------------------- /src/ShopperServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/ShopperServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/CheckTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/CheckTrait.php -------------------------------------------------------------------------------- /src/Traits/ContentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/ContentTrait.php -------------------------------------------------------------------------------- /src/Traits/Mediatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/Mediatable.php -------------------------------------------------------------------------------- /src/Traits/PathTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/PathTrait.php -------------------------------------------------------------------------------- /src/Traits/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/Resize.php -------------------------------------------------------------------------------- /src/Traits/Seedable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/Seedable.php -------------------------------------------------------------------------------- /src/Traits/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/Setting.php -------------------------------------------------------------------------------- /src/Traits/Singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/Traits/Singleton.php -------------------------------------------------------------------------------- /src/TransferService/ExternalTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/TransferService/ExternalTransfer.php -------------------------------------------------------------------------------- /src/TransferService/LocalTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/TransferService/LocalTransfer.php -------------------------------------------------------------------------------- /src/TransferService/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/TransferService/Transfer.php -------------------------------------------------------------------------------- /src/TransferService/TransferFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/src/TransferService/TransferFactory.php -------------------------------------------------------------------------------- /tests/ShopperTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/tests/ShopperTestCase.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopperlabs/shopper-react/HEAD/webpack.mix.js --------------------------------------------------------------------------------