├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .rnd ├── .styleci.yml ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── CategoryController.php │ │ │ ├── ContactController.php │ │ │ ├── FavouriteController.php │ │ │ ├── NotificationController.php │ │ │ ├── ProductCartController.php │ │ │ ├── ProductDetailsController.php │ │ │ ├── ProductListController.php │ │ │ ├── ReviewController.php │ │ │ ├── SiteInfoController.php │ │ │ ├── SliderController.php │ │ │ └── VisitorController.php │ │ ├── AdminController.php │ │ ├── Controller.php │ │ └── User │ │ │ ├── AuthController.php │ │ │ ├── ForgetController.php │ │ │ ├── ResetController.php │ │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── ForgetRequest.php │ │ ├── RegisterRequest.php │ │ └── ResetRequest.php ├── Mail │ └── ForgetMail.php ├── Models │ ├── CartOrder.php │ ├── Category.php │ ├── Contact.php │ ├── Favourites.php │ ├── HomeSlider.php │ ├── Notification.php │ ├── ProductCart.php │ ├── ProductDetails.php │ ├── ProductList.php │ ├── ProductReview.php │ ├── SiteInfo.php │ ├── Subcategory.php │ ├── User.php │ └── Visitor.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── image.php ├── jetstream.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_07_28_192511_create_sessions_table.php │ ├── 2021_07_28_195004_create_visitors_table.php │ ├── 2021_07_28_205153_create_contacts_table.php │ ├── 2021_07_30_193439_create_site_infos_table.php │ ├── 2021_08_01_200035_create_categories_table.php │ ├── 2021_08_01_200508_create_subcategories_table.php │ ├── 2021_08_03_194953_create_product_lists_table.php │ ├── 2021_08_04_232020_create_home_sliders_table.php │ ├── 2021_08_07_203807_create_product_details_table.php │ ├── 2021_08_08_213147_create_notifications_table.php │ ├── 2021_08_14_015111_create_product_reviews_table.php │ ├── 2021_08_15_192740_create_product_carts_table.php │ ├── 2021_08_16_225942_create_favourites_table.php │ └── 2021_08_19_192027_create_cart_orders_table.php └── seeders │ └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── backend │ └── assets │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── dark-theme.css │ │ ├── header-colors.css │ │ ├── icons.css │ │ ├── pace.min.css │ │ └── semi-dark.css │ │ ├── flags │ │ ├── 1x1 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ └── 4x3 │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ ├── fonts │ │ ├── LineIcons.eot │ │ ├── LineIcons.svg │ │ ├── LineIcons.ttf │ │ ├── LineIcons.woff │ │ ├── LineIcons.woff2 │ │ ├── boxicons.eot │ │ ├── boxicons.svg │ │ ├── boxicons.ttf │ │ ├── boxicons.woff │ │ └── boxicons.woff2 │ │ ├── images │ │ ├── avatars │ │ │ ├── avatar-1.png │ │ │ ├── avatar-10.png │ │ │ ├── avatar-11.png │ │ │ ├── avatar-12.png │ │ │ ├── avatar-13.png │ │ │ ├── avatar-14.png │ │ │ ├── avatar-15.png │ │ │ ├── avatar-16.png │ │ │ ├── avatar-17.png │ │ │ ├── avatar-18.png │ │ │ ├── avatar-19.png │ │ │ ├── avatar-2.png │ │ │ ├── avatar-20.png │ │ │ ├── avatar-21.png │ │ │ ├── avatar-22.png │ │ │ ├── avatar-23.png │ │ │ ├── avatar-24.png │ │ │ ├── avatar-25.png │ │ │ ├── avatar-3.png │ │ │ ├── avatar-4.png │ │ │ ├── avatar-5.png │ │ │ ├── avatar-6.png │ │ │ ├── avatar-7.png │ │ │ ├── avatar-8.png │ │ │ └── avatar-9.png │ │ ├── bg-themes │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ ├── errors-images │ │ │ ├── 404-error.png │ │ │ └── 505-error.png │ │ ├── favicon-32x32.png │ │ ├── gallery │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ └── 34.png │ │ ├── icons │ │ │ ├── chair.png │ │ │ ├── chair.svg │ │ │ ├── forgot-2.png │ │ │ ├── headphones.png │ │ │ ├── idea.png │ │ │ ├── search.svg │ │ │ ├── shoes.png │ │ │ ├── tshirt.png │ │ │ ├── user-interface.png │ │ │ ├── user.png │ │ │ └── watch.png │ │ ├── login-images │ │ │ ├── bg-forgot-password.jpg │ │ │ ├── bg-lock-screen.jpg │ │ │ ├── bg-login-img.jpg │ │ │ └── forgot-password-frent-img.jpg │ │ ├── logo-icon.png │ │ ├── logo-img.png │ │ └── products │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ └── 19.png │ │ ├── js │ │ ├── app.js │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── dashboard-alternate.js │ │ ├── dashboard-analytics.js │ │ ├── dashboard-digital-marketing.js │ │ ├── dashboard-eCommerce.js │ │ ├── dashboard-human-resources.js │ │ ├── dashboard-sales.js │ │ ├── index.js │ │ ├── jquery.min.js │ │ ├── pace.min.js │ │ └── widgets.js │ │ └── plugins │ │ ├── Drag-And-Drop │ │ └── dist │ │ │ ├── imageuploadify.min.css │ │ │ └── imageuploadify.min.js │ │ ├── apexcharts-bundle │ │ ├── css │ │ │ └── apexcharts.css │ │ └── js │ │ │ ├── apex-custom.js │ │ │ ├── apexcharts.js │ │ │ └── apexcharts.min.js │ │ ├── bootstrap-material-datetimepicker │ │ ├── css │ │ │ ├── bootstrap-material-datetimepicker.min.css │ │ │ └── bootstrap-material-datetimepicker.min.css.map │ │ └── js │ │ │ ├── bootstrap-material-datetimepicker.min.js │ │ │ ├── bootstrap-material-datetimepicker.min.js.map │ │ │ └── moment.min.js │ │ ├── chartjs │ │ └── js │ │ │ ├── Chart.extension.js │ │ │ ├── Chart.min.js │ │ │ └── chartjs-custom.js │ │ ├── datatable │ │ ├── css │ │ │ └── dataTables.bootstrap5.min.css │ │ └── js │ │ │ ├── dataTables.bootstrap5.min.js │ │ │ └── jquery.dataTables.min.js │ │ ├── datetimepicker │ │ ├── css │ │ │ ├── classic.css │ │ │ ├── classic.date.css │ │ │ └── classic.time.css │ │ └── js │ │ │ ├── legacy.js │ │ │ ├── picker.date.js │ │ │ ├── picker.js │ │ │ └── picker.time.js │ │ ├── fancy-file-uploader │ │ ├── cors │ │ │ ├── jquery.postmessage-transport.js │ │ │ └── jquery.xdr-transport.js │ │ ├── fancy_fileupload.css │ │ ├── fancy_microphone.png │ │ ├── fancy_okay.png │ │ ├── fancy_remove.png │ │ ├── fancy_upload.png │ │ ├── fancy_webcam.png │ │ ├── jquery.fancy-fileupload.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ └── jquery.ui.widget.js │ │ ├── fullcalendar │ │ ├── css │ │ │ ├── main.css │ │ │ └── main.min.css │ │ └── js │ │ │ ├── main.js │ │ │ └── main.min.js │ │ ├── gmaps │ │ └── map-custom-script.js │ │ ├── highcharts │ │ ├── css │ │ │ ├── dark-unica.css │ │ │ ├── grid-light.css │ │ │ ├── highcharts-white.css │ │ │ ├── highcharts.css │ │ │ └── sand-signika.css │ │ └── js │ │ │ ├── accessibility.js │ │ │ ├── accessibility.js.map │ │ │ ├── cylinder.js │ │ │ ├── cylinder.js.map │ │ │ ├── export-data.js │ │ │ ├── export-data.js.map │ │ │ ├── exporting.js │ │ │ ├── exporting.js.map │ │ │ ├── funnel3d.js │ │ │ ├── funnel3d.js.map │ │ │ ├── highcharts-3d.js │ │ │ ├── highcharts-3d.js.map │ │ │ ├── highcharts-custom.script.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.js.map │ │ │ ├── highcharts.js │ │ │ ├── highcharts.js.map │ │ │ ├── solid-gauge.js │ │ │ ├── solid-gauge.js.map │ │ │ ├── variable-pie.js │ │ │ └── variable-pie.js.map │ │ ├── input-tags │ │ ├── css │ │ │ └── tagsinput.css │ │ └── js │ │ │ └── tagsinput.js │ │ ├── jquery-knob │ │ ├── excanvas.js │ │ └── jquery.knob.js │ │ ├── jquery.easy-pie-chart │ │ ├── easy-pie-chart.init.js │ │ ├── easypiechart.min.js │ │ └── jquery.easypiechart.min.js │ │ ├── metismenu │ │ ├── css │ │ │ ├── metisMenu.min.css │ │ │ └── metisMenu.min.css.map │ │ └── js │ │ │ ├── metisMenu.min.js │ │ │ └── metisMenu.min.js.map │ │ ├── notifications │ │ ├── css │ │ │ ├── lobibox.css │ │ │ └── lobibox.min.css │ │ ├── img │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ ├── js │ │ │ ├── lobibox.js │ │ │ ├── lobibox.min.js │ │ │ ├── messageboxes.js │ │ │ ├── messageboxes.min.js │ │ │ ├── notification-custom-script.js │ │ │ ├── notifications.js │ │ │ └── notifications.min.js │ │ └── sounds │ │ │ ├── sound1.ogg │ │ │ ├── sound2.ogg │ │ │ ├── sound3.ogg │ │ │ ├── sound4.ogg │ │ │ ├── sound5.ogg │ │ │ └── sound6.ogg │ │ ├── perfect-scrollbar │ │ ├── css │ │ │ └── perfect-scrollbar.css │ │ └── js │ │ │ └── perfect-scrollbar.js │ │ ├── select2 │ │ ├── css │ │ │ ├── select2-bootstrap4.css │ │ │ └── select2.min.css │ │ └── js │ │ │ └── select2.min.js │ │ ├── simplebar │ │ ├── css │ │ │ └── simplebar.css │ │ └── js │ │ │ └── simplebar.min.js │ │ ├── smart-wizard │ │ ├── css │ │ │ └── smart_wizard_all.min.css │ │ └── js │ │ │ └── jquery.smartWizard.min.js │ │ ├── sparkline-charts │ │ ├── apex-sparkline-charts.js │ │ ├── jquery.sparkline.min.js │ │ └── sparkline-chart-script.js │ │ └── vectormap │ │ ├── jquery-jvectormap-2.0.2.css │ │ ├── jquery-jvectormap-2.0.2.min.js │ │ ├── jquery-jvectormap-au-mill.js │ │ ├── jquery-jvectormap-in-mill.js │ │ ├── jquery-jvectormap-uk-mill-en.js │ │ ├── jquery-jvectormap-us-aea-en.js │ │ ├── jquery-jvectormap-world-mill-en.js │ │ └── jvectormap.custom.js ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── upload │ ├── admin_images │ │ ├── 202108241925249-2492113_work-profile-user-default-female-suit-comments-default.png │ │ └── 202108241945121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg │ ├── category │ │ ├── 1709178983834885.png │ │ ├── 1709179102536731.png │ │ ├── 1709181859061681.png │ │ ├── 1709181919504921.png │ │ ├── 1709181939864637.png │ │ ├── 1709181954206377.png │ │ ├── 1709181973038355.png │ │ ├── 1709181986579379.png │ │ ├── 1709182001484833.png │ │ ├── 1709182015149068.png │ │ ├── 1709182029146227.png │ │ └── 1709182046010315.png │ ├── no_image.jpg │ ├── product │ │ ├── 1709370441026832.jpeg │ │ └── 1709370881358632.jpeg │ ├── productdetails │ │ ├── 1709370441571574.jpeg │ │ ├── 1709370441797317.jpeg │ │ ├── 1709370442202988.jpeg │ │ ├── 1709370442474940.jpeg │ │ ├── 1709370881661468.jpeg │ │ ├── 1709370881916811.jpeg │ │ ├── 1709370882175317.jpeg │ │ └── 1709370882423317.jpeg │ └── slider │ │ ├── 1709190575530585.jpg │ │ └── 1709191237312548.jpg └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── admin │ ├── admin_master.blade.php │ ├── body │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ └── index.blade.php │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── backend │ ├── admin │ │ ├── admin_profile.blade.php │ │ └── change_password.blade.php │ ├── category │ │ ├── category_add.blade.php │ │ ├── category_edit.blade.php │ │ └── category_view.blade.php │ ├── contact │ │ └── contact_all.blade.php │ ├── orders │ │ ├── complete_orders.blade.php │ │ ├── order_details.blade.php │ │ ├── pending_orders.blade.php │ │ └── processing_orders.blade.php │ ├── product │ │ ├── product_add.blade.php │ │ ├── product_all.blade.php │ │ └── product_edit.blade.php │ ├── review │ │ └── review_all.blade.php │ ├── siteinfo │ │ └── siteinfo_update.blade.php │ ├── slider │ │ ├── slider_add.blade.php │ │ ├── slider_edit.blade.php │ │ └── slider_view.blade.php │ └── subcategory │ │ ├── subcategory_add.blade.php │ │ ├── subcategory_edit.blade.php │ │ └── subcategory_view.blade.php │ ├── dashboard.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── mail │ └── forget.blade.php │ ├── navigation-menu.blade.php │ ├── policy.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── terms.blade.php │ ├── vendor │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── custom.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | /.idea 15 | /.vscode 16 | -------------------------------------------------------------------------------- /.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/.rnd -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- 1 | deleteProfilePhoto(); 18 | $user->tokens->each->delete(); 19 | $user->delete(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/NotificationController.php: -------------------------------------------------------------------------------- 1 | id; 15 | 16 | $productDetails = ProductDetails::where('product_id',$id)->get(); 17 | $productList = ProductList::where('id',$id)->get(); 18 | 19 | $item = [ 20 | 'productDetails' => $productDetails, 21 | 'productList' => $productList, 22 | ]; 23 | 24 | return $item; 25 | 26 | } // End Method 27 | 28 | 29 | 30 | } 31 | -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/VisitorController.php: -------------------------------------------------------------------------------- 1 | $ip_address, 21 | 'visit_time' => $visit_time, 22 | 'visit_date' => $visit_date 23 | 24 | ]); 25 | 26 | return $result; 27 | 28 | 29 | } // end method 30 | 31 | 32 | 33 | 34 | } 35 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | 'required', 28 | ]; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Http/Requests/RegisterRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:55', 28 | 'email' => 'required|unique:users|min:5|max:60', 29 | 'password' => 'required|min:6|confirmed' 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Requests/ResetRequest.php: -------------------------------------------------------------------------------- 1 | 'required', 28 | 'email' => 'required|email', 29 | 'password' => 'required|min:6|confirmed' 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Models/CartOrder.php: -------------------------------------------------------------------------------- 1 | 'gd' 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/migrations/2021_08_04_232020_create_home_sliders_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('slider_image'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('home_sliders'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production" 11 | }, 12 | "devDependencies": { 13 | "@tailwindcss/forms": "^0.3.1", 14 | "@tailwindcss/typography": "^0.4.0", 15 | "alpinejs": "^3.0.6", 16 | "axios": "^0.21", 17 | "laravel-mix": "^6.0.6", 18 | "lodash": "^4.17.19", 19 | "postcss": "^8.1.14", 20 | "postcss-import": "^14.0.1", 21 | "tailwindcss": "^2.2.2" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/pr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/tk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/pr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/tk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/backend/assets/fonts/LineIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/LineIcons.eot -------------------------------------------------------------------------------- /public/backend/assets/fonts/LineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/LineIcons.ttf -------------------------------------------------------------------------------- /public/backend/assets/fonts/LineIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/LineIcons.woff -------------------------------------------------------------------------------- /public/backend/assets/fonts/LineIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/LineIcons.woff2 -------------------------------------------------------------------------------- /public/backend/assets/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/boxicons.eot -------------------------------------------------------------------------------- /public/backend/assets/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/boxicons.ttf -------------------------------------------------------------------------------- /public/backend/assets/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/boxicons.woff -------------------------------------------------------------------------------- /public/backend/assets/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-1.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-10.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-11.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-12.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-13.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-14.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-15.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-16.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-17.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-18.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-19.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-2.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-20.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-21.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-22.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-23.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-24.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-25.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-3.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-4.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-5.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-6.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-7.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-8.png -------------------------------------------------------------------------------- /public/backend/assets/images/avatars/avatar-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/avatars/avatar-9.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/1.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/2.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/3.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/4.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/5.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/6.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/7.png -------------------------------------------------------------------------------- /public/backend/assets/images/bg-themes/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/bg-themes/8.png -------------------------------------------------------------------------------- /public/backend/assets/images/errors-images/404-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/errors-images/404-error.png -------------------------------------------------------------------------------- /public/backend/assets/images/errors-images/505-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/errors-images/505-error.png -------------------------------------------------------------------------------- /public/backend/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/01.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/02.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/03.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/04.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/05.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/06.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/07.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/08.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/09.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/10.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/11.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/12.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/13.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/14.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/15.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/16.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/17.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/18.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/19.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/20.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/21.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/22.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/23.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/24.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/25.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/26.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/27.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/28.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/29.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/30.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/31.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/32.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/33.png -------------------------------------------------------------------------------- /public/backend/assets/images/gallery/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/gallery/34.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/chair.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/forgot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/forgot-2.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/headphones.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/idea.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/shoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/shoes.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/tshirt.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/user-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/user-interface.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/user.png -------------------------------------------------------------------------------- /public/backend/assets/images/icons/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/icons/watch.png -------------------------------------------------------------------------------- /public/backend/assets/images/login-images/bg-forgot-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/login-images/bg-forgot-password.jpg -------------------------------------------------------------------------------- /public/backend/assets/images/login-images/bg-lock-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/login-images/bg-lock-screen.jpg -------------------------------------------------------------------------------- /public/backend/assets/images/login-images/bg-login-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/login-images/bg-login-img.jpg -------------------------------------------------------------------------------- /public/backend/assets/images/login-images/forgot-password-frent-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/login-images/forgot-password-frent-img.jpg -------------------------------------------------------------------------------- /public/backend/assets/images/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/logo-icon.png -------------------------------------------------------------------------------- /public/backend/assets/images/logo-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/logo-img.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/01.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/02.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/03.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/04.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/05.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/06.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/07.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/08.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/09.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/10.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/11.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/12.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/13.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/14.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/15.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/16.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/17.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/18.png -------------------------------------------------------------------------------- /public/backend/assets/images/products/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/images/products/19.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/fancy-file-uploader/fancy_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/fancy-file-uploader/fancy_microphone.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/fancy-file-uploader/fancy_okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/fancy-file-uploader/fancy_okay.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/fancy-file-uploader/fancy_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/fancy-file-uploader/fancy_remove.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/fancy-file-uploader/fancy_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/fancy-file-uploader/fancy_upload.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/fancy-file-uploader/fancy_webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/fancy-file-uploader/fancy_webcam.png -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/1.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/2.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/3.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/4.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/5.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/img/6.jpg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound1.ogg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound2.ogg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound3.ogg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound4.ogg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound5.ogg -------------------------------------------------------------------------------- /public/backend/assets/plugins/notifications/sounds/sound6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/backend/assets/plugins/notifications/sounds/sound6.ogg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/favicon.ico -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/upload/admin_images/202108241925249-2492113_work-profile-user-default-female-suit-comments-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/admin_images/202108241925249-2492113_work-profile-user-default-female-suit-comments-default.png -------------------------------------------------------------------------------- /public/upload/admin_images/202108241945121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/admin_images/202108241945121859823-male-avatar-icon-or-portrait-handsome-young-man-face-with-beard-vector-illustration-.jpg -------------------------------------------------------------------------------- /public/upload/category/1709178983834885.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709178983834885.png -------------------------------------------------------------------------------- /public/upload/category/1709179102536731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709179102536731.png -------------------------------------------------------------------------------- /public/upload/category/1709181859061681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181859061681.png -------------------------------------------------------------------------------- /public/upload/category/1709181919504921.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181919504921.png -------------------------------------------------------------------------------- /public/upload/category/1709181939864637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181939864637.png -------------------------------------------------------------------------------- /public/upload/category/1709181954206377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181954206377.png -------------------------------------------------------------------------------- /public/upload/category/1709181973038355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181973038355.png -------------------------------------------------------------------------------- /public/upload/category/1709181986579379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709181986579379.png -------------------------------------------------------------------------------- /public/upload/category/1709182001484833.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709182001484833.png -------------------------------------------------------------------------------- /public/upload/category/1709182015149068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709182015149068.png -------------------------------------------------------------------------------- /public/upload/category/1709182029146227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709182029146227.png -------------------------------------------------------------------------------- /public/upload/category/1709182046010315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/category/1709182046010315.png -------------------------------------------------------------------------------- /public/upload/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/no_image.jpg -------------------------------------------------------------------------------- /public/upload/product/1709370441026832.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/product/1709370441026832.jpeg -------------------------------------------------------------------------------- /public/upload/product/1709370881358632.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/product/1709370881358632.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370441571574.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370441571574.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370441797317.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370441797317.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370442202988.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370442202988.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370442474940.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370442474940.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370881661468.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370881661468.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370881916811.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370881916811.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370882175317.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370882175317.jpeg -------------------------------------------------------------------------------- /public/upload/productdetails/1709370882423317.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/productdetails/1709370882423317.jpeg -------------------------------------------------------------------------------- /public/upload/slider/1709190575530585.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/slider/1709190575530585.jpg -------------------------------------------------------------------------------- /public/upload/slider/1709191237312548.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easylearningbd/react-ecommerce-with-laravel/8090f91cdd238f3fe9bb6a49a614dc14a7a25719/public/upload/slider/1709191237312548.jpg -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss/base'; 2 | @import 'tailwindcss/components'; 3 | @import 'tailwindcss/utilities'; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | import Alpine from 'alpinejs'; 4 | 5 | window.Alpine = Alpine; 6 | 7 | Alpine.start(); 8 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | Edit this file to define the privacy policy for your application. 4 | -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- 1 | # Terms of Service 2 | 3 | Edit this file to define the terms of service for your application. 4 | -------------------------------------------------------------------------------- /resources/views/admin/body/footer.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | {{ __('API Tokens') }} 5 |

6 |
7 | 8 |
9 |
10 | @livewire('api.api-token-manager') 11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | {{ __('Dashboard') }} 5 |

6 |
7 | 8 |
9 |
10 |
11 | 12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /resources/views/mail/forget.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forget Password 5 | 6 | 7 | HI
8 | 9 | Change Your Password Click Here 10 |
11 | Pincode : {{ $data }} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 | 8 |
9 | {!! $policy !!} 10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 | 8 |
9 | {!! $terms !!} 10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | const defaultTheme = require('tailwindcss/defaultTheme'); 2 | 3 | module.exports = { 4 | mode: 'jit', 5 | purge: [ 6 | './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', 7 | './vendor/laravel/jetstream/**/*.blade.php', 8 | './storage/framework/views/*.php', 9 | './resources/views/**/*.blade.php', 10 | ], 11 | 12 | theme: { 13 | extend: { 14 | fontFamily: { 15 | sans: ['Nunito', ...defaultTheme.fontFamily.sans], 16 | }, 17 | }, 18 | }, 19 | 20 | variants: { 21 | extend: { 22 | opacity: ['disabled'], 23 | }, 24 | }, 25 | 26 | plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')], 27 | }; 28 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- 1 | actingAs($user = User::factory()->create()); 18 | 19 | Livewire::test(LogoutOtherBrowserSessionsForm::class) 20 | ->set('password', 'password') 21 | ->call('logoutOtherBrowserSessions'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel applications. By default, we are compiling the CSS 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .postCss('resources/css/app.css', 'public/css', [ 16 | require('postcss-import'), 17 | require('tailwindcss'), 18 | ]); 19 | 20 | if (mix.inProduction()) { 21 | mix.version(); 22 | } 23 | --------------------------------------------------------------------------------