├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── ExcelExports.php │ └── ExportProduct.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── AuthController.php │ │ ├── BrandProduct.php │ │ ├── CartController.php │ │ ├── CategoryPost.php │ │ ├── CategoryProduct.php │ │ ├── CheckoutController.php │ │ ├── ContactController.php │ │ ├── Controller.php │ │ ├── CouponController.php │ │ ├── DeliveryController.php │ │ ├── GalleryController.php │ │ ├── HomeController.php │ │ ├── OrderController.php │ │ ├── PostController.php │ │ ├── ProductController.php │ │ ├── SliderController.php │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── AccessPermission.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── Impersonate.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Imports │ ├── ExcelImports.php │ └── ImportProduct.php ├── Models │ ├── Admin.php │ ├── Brand.php │ ├── CatePost.php │ ├── CategoryProductModel.php │ ├── City.php │ ├── Comment.php │ ├── Contact.php │ ├── Coupon.php │ ├── Customer.php │ ├── Feeship.php │ ├── Gallery.php │ ├── Login copy.php │ ├── Login.php │ ├── Order.php │ ├── OrderDetails.php │ ├── Post.php │ ├── Product.php │ ├── Province.php │ ├── Roles.php │ ├── RolesUser.php │ ├── Shipping.php │ ├── Slider.php │ ├── Statistic.php │ ├── User.php │ ├── Visitors.php │ └── Wards.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BladeServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.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 ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── toastr.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_10_18_012024_create_tbl_admin_table.php │ ├── 2021_10_18_042913_create_tbl_brand_product.php │ ├── 2021_10_18_064151_create_tbl_product.php │ ├── 2021_10_19_074517_tbl_customer.php │ ├── 2021_10_19_080648_tbl_shipping.php │ ├── 2021_10_19_084518_tbl_payment.php │ ├── 2021_10_19_084750_tbl_order.php │ └── 2021_10_19_084953_tbl_order_details.php └── seeders │ ├── DatabaseSeeder.php │ ├── RolesTableSeeder.php │ └── UsersTableSeeder.php ├── don_vi_hanh_chinh.sql ├── elaravel.sql ├── favicon.ico ├── index.php ├── logo3.png ├── package.json ├── phpunit.xml ├── public ├── backend │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── bender-runner.config.json │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── balloonpanel │ │ │ │ └── skins │ │ │ │ │ ├── kama │ │ │ │ │ └── balloonpanel.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── close.png │ │ │ │ │ └── moono │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── close.png │ │ │ ├── balloontoolbar │ │ │ │ └── skins │ │ │ │ │ ├── default.css │ │ │ │ │ ├── kama │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ └── moono │ │ │ │ │ └── balloontoolbar.css │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── styles │ │ │ │ │ └── dialog.css │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── easyimage │ │ │ │ ├── dialogs │ │ │ │ │ └── easyimagealt.js │ │ │ │ └── styles │ │ │ │ │ └── easyimage.css │ │ │ ├── exportpdf │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── plugindefinition.js │ │ │ │ └── tests │ │ │ │ │ ├── _helpers │ │ │ │ │ └── tools.js │ │ │ │ │ ├── authentication.js │ │ │ │ │ ├── exportpdf.js │ │ │ │ │ ├── manual │ │ │ │ │ ├── configfilename.html │ │ │ │ │ ├── configfilename.md │ │ │ │ │ ├── emptyeditor.html │ │ │ │ │ ├── emptyeditor.md │ │ │ │ │ ├── integration.html │ │ │ │ │ ├── integration.md │ │ │ │ │ ├── integrations │ │ │ │ │ │ ├── easyimage.html │ │ │ │ │ │ └── easyimage.md │ │ │ │ │ ├── notifications.html │ │ │ │ │ ├── notifications.md │ │ │ │ │ ├── notificationsasync.html │ │ │ │ │ ├── notificationsasync.md │ │ │ │ │ ├── paperformat.html │ │ │ │ │ ├── paperformat.md │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── readonly.md │ │ │ │ │ ├── stylesheets.html │ │ │ │ │ ├── stylesheets.md │ │ │ │ │ ├── tokenfetching.html │ │ │ │ │ ├── tokenfetching.md │ │ │ │ │ ├── tokentwoeditorscorrect.html │ │ │ │ │ ├── tokentwoeditorscorrect.md │ │ │ │ │ ├── tokentwoeditorswrong.html │ │ │ │ │ ├── tokentwoeditorswrong.md │ │ │ │ │ ├── tokenwithouturl.html │ │ │ │ │ ├── tokenwithouturl.md │ │ │ │ │ ├── wrongendpoint.html │ │ │ │ │ └── wrongendpoint.md │ │ │ │ │ ├── notification.js │ │ │ │ │ ├── resourcespaths.js │ │ │ │ │ ├── statistics.js │ │ │ │ │ └── stylesheets.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── imagebase │ │ │ │ └── styles │ │ │ │ │ └── imagebase.css │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromgdocs │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastefromlibreoffice │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetools │ │ │ │ └── filter │ │ │ │ │ ├── common.js │ │ │ │ │ └── image.js │ │ │ ├── preview │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── preview.html │ │ │ │ └── styles │ │ │ │ │ └── screen.css │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── spellchecker.png │ │ │ │ └── spellchecker.png │ │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── easyimage │ │ │ │ │ └── easyimage.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ ├── styles.js │ │ └── vendor │ │ │ └── promise.js │ ├── ckeditor_4.16.2_full.zip │ ├── css │ │ ├── bootstrap-tagsinput.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ ├── font.css │ │ ├── jquery.dataTables.min.css │ │ ├── jqvmap.css │ │ ├── lightbox.css │ │ ├── minimal.css │ │ ├── monthly.css │ │ ├── morris.css │ │ ├── style-responsive.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── adminimg.jpg │ │ ├── bg.jpg │ │ ├── close.png │ │ ├── mail.png │ │ ├── minimal.png │ │ ├── nav-expand.png │ │ ├── next.png │ │ ├── pass.png │ │ ├── prev.png │ │ └── search-icon.png │ └── js │ │ ├── bootstrap-tagsinput.js │ │ ├── bootstrap.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.dcjqaccordion.2.7.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.form-validator.min.js │ │ ├── jquery.min.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.scrollTo.js │ │ ├── jquery.slimscroll.js │ │ ├── jquery.vmap.asia.js │ │ ├── jquery.vmap.australia.js │ │ ├── jquery.vmap.europe.js │ │ ├── jquery.vmap.js │ │ ├── jquery.vmap.sampledata.js │ │ ├── jquery.vmap.world.js │ │ ├── jquery2.0.3.min.js │ │ ├── lightbox-plus-jquery.min.js │ │ ├── monthly.js │ │ ├── morris.js │ │ ├── raphael-min.js │ │ ├── script.js │ │ ├── scripts.js │ │ └── simple.money.format.js ├── frontend │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── lightgallery.min.css │ │ ├── lightslider.css │ │ ├── main.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ ├── prettify.css │ │ ├── prettyPhoto.css │ │ ├── price-range.css │ │ ├── responsive.css │ │ ├── sweetalert.css │ │ └── vlite.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.woff │ │ ├── lg.eot │ │ └── lg.woff │ ├── images │ │ ├── anh4.jpg │ │ ├── bag.png │ │ ├── bag2.png │ │ ├── bangtrangtri.png │ │ ├── businessman.png │ │ ├── caythong.jpg │ │ ├── chapter │ │ │ ├── 002.jpg │ │ │ ├── 007.jpg │ │ │ ├── chapter1.jpg │ │ │ ├── chapter2.jpg │ │ │ ├── chapter3.jpg │ │ │ ├── chapter4.jpg │ │ │ ├── chapter5.jpg │ │ │ ├── chapter6.jpg │ │ │ └── chapter7.jpg │ │ ├── customer.png │ │ ├── densan1.jpg │ │ ├── densan2.jpg │ │ ├── densan3.jpg │ │ ├── densan4.jpg │ │ ├── densan5.jpg │ │ ├── document │ │ │ ├── Giáo trình AutoCAD 2007 - Pham Van Hau.pdf │ │ │ ├── New Microsoft Word Document.docx │ │ │ ├── file.docx │ │ │ └── Đánh Thức Con Người Phi Thường Trong Bạn.pdf │ │ ├── dongho1.jpg │ │ ├── dongho2.jpg │ │ ├── dongho3.jpg │ │ ├── giuonghano.png │ │ ├── giuongquada.png │ │ ├── giuongsago.png │ │ ├── home.jpg │ │ ├── kebep1.jpg │ │ ├── kebep1_1.png │ │ ├── kebep2.jpg │ │ ├── kebep2_1.jpg │ │ ├── km2.jpg │ │ ├── km3.jpg │ │ ├── logo-mail.png │ │ ├── logo.png │ │ ├── logommh.png │ │ ├── lookbook.png │ │ ├── metalogo.png │ │ ├── sao.jpg │ │ ├── searchicon.png │ │ ├── set.jpg │ │ ├── set1.png │ │ ├── set2.png │ │ ├── sharing&loving.png │ │ ├── slider3.png │ │ ├── sliderlast.png │ │ ├── sofabang1.jpg │ │ ├── sofabang2.jpg │ │ ├── sofabang3.jpg │ │ ├── sofabang4.jpg │ │ ├── sofabang5.jpg │ │ ├── sofagoc1.jpg │ │ ├── sofagoc2.jpg │ │ ├── sofagoc3.jpg │ │ ├── thongkho.jpg │ │ ├── thongkho_1.jpg │ │ ├── thungrac1.jpg │ │ ├── thungrac2.jpg │ │ ├── thungrac3.jpg │ │ ├── tip1.jpg │ │ ├── tip2.jpg │ │ ├── tip3.jpg │ │ ├── tranh1.jpg │ │ ├── tranh2.jpg │ │ ├── tranh3.jpg │ │ ├── tuqa1.png │ │ ├── tuqa2.jpg │ │ ├── tuqa3.png │ │ ├── tuqa4.png │ │ ├── tuqa5.png │ │ ├── tutv1.png │ │ ├── tutv2.png │ │ ├── tutv3.png │ │ ├── tutv4.png │ │ ├── tutv5.png │ │ ├── tuyendung.png │ │ ├── udtv.png │ │ └── udtv2.png │ └── js │ │ ├── bootstrap.min.js │ │ ├── contact.js │ │ ├── gmaps.js │ │ ├── html5shiv.js │ │ ├── jquery.js │ │ ├── jquery.prettyPhoto.js │ │ ├── jquery.scrollUp.min.js │ │ ├── lightgallery-all.min.js │ │ ├── lightslider.js │ │ ├── main.js │ │ ├── owl.carousel.js │ │ ├── prettify.js │ │ ├── price-range.js │ │ ├── simple.money.format.js │ │ ├── sweetalert.min.js │ │ └── vlite.js └── uploads │ ├── ckeditor │ ├── 123_1601205087.jpg │ ├── 123_1601215277.jpg │ ├── 1444_SmartheartPuppy_1601206645.jpg │ ├── 4.1_1635923666.jfif │ ├── 4.1_1635923852.jfif │ ├── 88_image_catalog_labrada_muscle_mass_12lbs_5_4kg_image_catalog_1587722741_1601207744.jpg │ ├── gallery2_1601215815.jpg │ ├── image-20211106120817-1_1636175297.png │ └── mayps1_1601215566.jpg │ ├── contact │ ├── blog-three41.jpg │ ├── logo3.png │ └── logo54.png │ ├── document │ ├── Giáo trình AutoCAD 2007 - Pham Van Hau41.pdf │ ├── Giáo trình AutoCAD 2007 - Pham Van Hau62.pdf │ ├── New Text Document44.txt │ ├── file.pdf │ ├── file82.docx │ └── Đánh Thức Con Người Phi Thường Trong Bạn45.pdf │ ├── gallery │ ├── 2021-10-29 (12)27.png │ ├── 2021-10-29 (6)73.png │ ├── 2021-10-29 (8)72.png │ ├── alieen184.png │ ├── anh421.jpg │ ├── bag14.png │ ├── bag246.png │ ├── bangtrangtri84.png │ ├── bee151.png │ ├── caythong89.jpg │ ├── dalat347.png │ ├── dalat432.png │ ├── densan193.jpg │ ├── densan293.jpg │ ├── densan324.jpg │ ├── densan46.jpg │ ├── densan541.jpg │ ├── dongho141.jpg │ ├── dongho212.jpg │ ├── dongho324.jpg │ ├── fika14.png │ ├── giuonghano5.png │ ├── giuonghano91.png │ ├── giuongquada3.png │ ├── giuongquada30.png │ ├── giuongquada88.png │ ├── giuongsago25.png │ ├── giuongsago35.png │ ├── giuongsago99.png │ ├── hano534.png │ ├── hasi125.jpg │ ├── hiro152.jpg │ ├── hiro223.jpg │ ├── kebep138.jpg │ ├── kebep266.jpg │ ├── net155.jpg │ ├── net279.jpg │ ├── sao6.jpg │ ├── set187.png │ ├── set255.png │ ├── set5.jpg │ ├── sofabang136.jpg │ ├── sofabang283.jpg │ ├── sofabang373.jpg │ ├── sofabang454.jpg │ ├── sofabang531.jpg │ ├── sofagoc187.jpg │ ├── sofagoc221.jpg │ ├── sofagoc370.jpg │ ├── thongkho47.jpg │ ├── thungrac172.jpg │ ├── thungrac214.jpg │ ├── thungrac374.jpg │ ├── tranh192.jpg │ ├── tranh269.jpg │ ├── tranh35.jpg │ ├── tuqa193.png │ ├── tuqa219.jpg │ ├── tuqa368.png │ ├── tuqa456.png │ ├── tuqa550.png │ ├── tutv179.png │ ├── tutv25.png │ ├── tutv392.png │ ├── tutv498.png │ ├── tutv522.png │ └── you141.jpg │ ├── post │ ├── km213.jpg │ ├── km22.jpg │ ├── km237.jpg │ ├── km279.jpg │ ├── km286.jpg │ ├── sharing&loving28.png │ ├── tip119.jpg │ ├── tip277.jpg │ ├── tip320.jpg │ ├── tuyendung59.png │ ├── udtv21.png │ └── udtv247.png │ ├── product │ ├── 2021-10-29 (6)73.png │ ├── alieen184.png │ ├── anh421.jpg │ ├── bag14.png │ ├── bag246.png │ ├── bangtrangtri84.png │ ├── bee151.png │ ├── caythong89.jpg │ ├── dalat347.png │ ├── dalat432.png │ ├── densan193.jpg │ ├── densan293.jpg │ ├── densan324.jpg │ ├── densan46.jpg │ ├── densan541.jpg │ ├── dongho141.jpg │ ├── dongho212.jpg │ ├── dongho324.jpg │ ├── fika14.png │ ├── giuonghano5.png │ ├── giuonghano91.png │ ├── giuongquada3.png │ ├── giuongquada30.png │ ├── giuongquada88.png │ ├── giuongsago25.png │ ├── giuongsago35.png │ ├── giuongsago99.png │ ├── hano534.png │ ├── hasi125.jpg │ ├── hiro152.jpg │ ├── hiro223.jpg │ ├── kebep138.jpg │ ├── kebep266.jpg │ ├── net155.jpg │ ├── net279.jpg │ ├── sao6.jpg │ ├── set187.png │ ├── set255.png │ ├── set5.jpg │ ├── sofabang136.jpg │ ├── sofabang283.jpg │ ├── sofabang373.jpg │ ├── sofabang419.jpg │ ├── sofabang531.jpg │ ├── sofagoc187.jpg │ ├── sofagoc221.jpg │ ├── sofagoc370.jpg │ ├── thongkho47.jpg │ ├── thungrac172.jpg │ ├── thungrac214.jpg │ ├── thungrac374.jpg │ ├── tranh192.jpg │ ├── tranh269.jpg │ ├── tranh35.jpg │ ├── tuqa193.png │ ├── tuqa219.jpg │ ├── tuqa368.png │ ├── tuqa456.png │ ├── tuqa550.png │ ├── tutv179.png │ ├── tutv25.png │ ├── tutv392.png │ ├── tutv498.png │ ├── tutv522.png │ └── you141.jpg │ ├── slider │ ├── 091216-casualfalloutifts-slider-2png18.png │ ├── 091216-casualfalloutifts-slider-2png1810.png │ ├── 2021-10-29 (6)26.png │ ├── 2021-10-29 (7)67.png │ ├── 2021-10-29 (8)18.png │ ├── 2021-10-29 (8)36.png │ ├── alieen138.png │ ├── alieen1_192.png │ ├── alieen1_219.png │ ├── alieen1_271.png │ ├── banner-template-concept-pet-shop_23-214843688821.jpg │ ├── banner.gif │ ├── banner190.jpg │ ├── banner342.jpg │ ├── bookslider43.jpg │ ├── hiro20.jpg │ ├── slider0.png │ ├── slider043.png │ ├── slider1.png │ ├── slider148.png │ ├── slider149.jpg │ ├── slider180.png │ ├── slider18063.png │ ├── slider188.jpg │ ├── slider2.png │ ├── slider244.png │ ├── slider24422.png │ ├── slider275.jpg │ ├── slider318.jpg │ ├── slider347.png │ ├── slider353.png │ ├── slider35322.png │ ├── slider4.png │ ├── sliderclothing64.jpg │ ├── sliderlast50.png │ └── sliderlast5033.png │ └── videos │ ├── hangle11.jpg │ ├── khu-cam-trai-zenna879.jpg │ ├── thieu-xe8.jpg │ └── viber-image-2019-06-06-12-01-4871.jpg ├── readme.md.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── add_brand_product.blade.php │ ├── add_category_product.blade.php │ ├── add_product.blade.php │ ├── all_brand_product.blade.php │ ├── all_category_product.blade.php │ ├── all_product.blade.php │ ├── category_post │ │ ├── add_category.blade.php │ │ ├── edit_category.blade.php │ │ └── list_category.blade.php │ ├── comment │ │ └── list_comment.blade.php │ ├── coupon │ │ ├── insert_coupon.blade.php │ │ └── list_coupon.blade.php │ ├── custom_auth │ │ ├── login_auth.blade.php │ │ └── register.blade.php │ ├── dashboard.blade.php │ ├── delivery │ │ └── add_delivery.blade.php │ ├── edit_brand_product.blade.php │ ├── edit_category_product.blade.php │ ├── edit_product.blade.php │ ├── gallery │ │ └── add_gallery.blade.php │ ├── images │ │ └── file_browser.blade.php │ ├── information │ │ └── add_information.blade.php │ ├── manage_order.blade.php │ ├── post │ │ ├── add_post.blade.php │ │ ├── edit_post.blade.php │ │ └── list_post.blade.php │ ├── slider │ │ ├── add_slider.blade.php │ │ └── list_slider.blade.php │ ├── users │ │ ├── add_users.blade.php │ │ └── all_users.blade.php │ └── view_order.blade.php │ ├── admin_layout.blade.php │ ├── admin_login.blade.php │ ├── errors │ ├── 404.blade.php │ └── 500.blade.php │ ├── layout.blade.php │ └── pages │ ├── baiviet │ ├── baiviet.blade.php │ └── danhmucbaiviet.blade.php │ ├── brand │ └── show_brand.blade.php │ ├── cart │ ├── cart_ajax.blade.php │ └── show_cart.blade.php │ ├── category │ └── show_category.blade.php │ ├── checkout │ ├── handcash.blade.php │ ├── login_checkout.blade.php │ ├── payment.blade.php │ └── show_checkout.blade.php │ ├── history │ ├── history.blade.php │ └── view_history_order.blade.php │ ├── home.blade.php │ ├── include │ ├── attribute.blade.php │ ├── sidebar.blade.php │ └── slider.blade.php │ ├── lienhe │ └── contact.blade.php │ ├── sanpham │ ├── search.blade.php │ ├── show_details.blade.php │ └── tag.blade.php │ └── send_mail.blade.php ├── robots.txt ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── web.config └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | version: 8 4 | disabled: 5 | - no_unused_imports 6 | finder: 7 | not-name: 8 | - index.php 9 | - server.php 10 | js: 11 | finder: 12 | not-name: 13 | - webpack.mix.js 14 | css: true 15 | -------------------------------------------------------------------------------- /app/Exports/ExcelExports.php: -------------------------------------------------------------------------------- 1 | hasAnyRoles(['admin','author'])){ 21 | return $next($request); 22 | } 23 | return redirect('/dashboard'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | has('impersonate')){ 20 | Auth::onceUsingId(session('impersonate')); 21 | } 22 | return $next($request); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | $row[0], 20 | 'category_name' => $row[1], 21 | 'slug_category_product' => $row[2], 22 | 'category_desc' => $row[3], 23 | 'category_status' => $row[4], 24 | ]); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Post'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/CategoryProductModel.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Models\Product'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/City.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Product', 'comment_product_id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/Contact.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\City', 'fee_matp'); 18 | } 19 | public function province() 20 | { 21 | return $this->belongsTo('App\Models\Province', 'fee_maqh'); 22 | } 23 | public function wards() 24 | { 25 | return $this->belongsTo('App\Models\Wards', 'fee_xaid'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Models/Gallery.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Product', 'product_id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\CatePost', 'cate_post_id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/Province.php: -------------------------------------------------------------------------------- 1 | belongsToMany('App\Models\Admin'); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/Models/RolesUser.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 4 | "closeButton"=> false, 5 | "debug"=> false, 6 | "newestOnTop"=> false, 7 | "progressBar"=> false, 8 | "positionClass"=> "toast-top-right", 9 | "preventDuplicates"=> false, 10 | "onclick"=> null, 11 | "showDuration"=> "300", 12 | "hideDuration"=> "1000", 13 | "timeOut"=> "5000", 14 | "extendedTimeOut"=> "1000", 15 | "showEasing"=> "swing", 16 | "hideEasing"=> "linear", 17 | "showMethod"=> "fadeIn", 18 | "hideMethod"=> "fadeOut" 19 | ], 20 | ]; 21 | ?> -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | $this->call(RolesTableSeeder::class); 18 | $this->call(UsersTableSeeder::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /database/seeders/RolesTableSeeder.php: -------------------------------------------------------------------------------- 1 | 'admin']); 20 | Roles::create(['name'=>'author']); 21 | Roles::create(['name'=>'user']); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/favicon.ico -------------------------------------------------------------------------------- /logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/logo3.png -------------------------------------------------------------------------------- /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 | "axios": "^0.21", 14 | "laravel-mix": "^6.0.6", 15 | "lodash": "^4.17.19", 16 | "postcss": "^8.1.14" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/backend/ckeditor/bender-runner.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bender": { 3 | "port": 9001 4 | }, 5 | "server": { 6 | "port": 9002 7 | }, 8 | "paths": { 9 | "ckeditor4": "../ckeditor4/", 10 | "runner": "./src/runner.html" 11 | }, 12 | "browsers": { 13 | "linux": [ "chrome", "firefox" ], 14 | "macos": [ "safari" ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/backend/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/balloonpanel/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/balloonpanel/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/balloonpanel/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/balloonpanel/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/balloonpanel/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/dialog/styles/dialog.css: -------------------------------------------------------------------------------- 1 | .cke_dialog_open { 2 | overflow: hidden; 3 | } 4 | 5 | .cke_dialog_container { 6 | position: fixed; 7 | overflow-y: auto; 8 | overflow-x: auto; 9 | width: 100%; 10 | height: 100%; 11 | top: 0; 12 | left: 0; 13 | z-index: 10010; 14 | } 15 | 16 | .cke_dialog_body { 17 | position: relative; 18 | } 19 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/plugindefinition.js: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/_helpers/tools.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | (function(){window.exportPdfUtils={useXHR:function(b,a){var c=sinon.useFakeXMLHttpRequest(),d;c.onCreate=function(a){d=a};b.execCommand("exportPdf");a&&a(d);c.restore()},getDefaultConfig:function(b,a){return CKEDITOR.tools.object.merge({extraPlugins:"exportpdf",exportPdf_appId:"cke4-tests-"+b},a)},initManualTest:function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");bender.tools.ignoreUnsupportedEnvironment("exportpdf")},toAbsoluteUrl:function(b,a){return(a?a:window.location.origin)+b}}})(); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |

My content and wrapper will be deleted.

6 |
7 | 8 | 19 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/notifications.html: -------------------------------------------------------------------------------- 1 |
2 |

Hello world!

3 |
4 | 5 |
6 |

Hello world!

7 |
8 | 9 | 18 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/paperformat.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, bug, 24 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification 5 | 6 | 1. Click `Export to PDF` button (the one next to the `Source` button) in the first editor. 7 | 1. Wait for the file to download. 8 | 1. Do the same in the second editor. 9 | 1. Compare paper format in files. 10 | 11 | **Expected:** 12 | 13 | * First editor produced file in `A4` format (`8.27in x 11.7in`); 14 | * Second editor produced file in `A6` format (`4.13in x 5.83in`). 15 | 16 | **Unexpected:** 17 | 18 | Any file is in different format than intended (e.g. `Letter` - `8.5in x 11in`). 19 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/readonly.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |

This editor is read-only.

4 |
5 | 6 | 7 | 8 | 19 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/readonly.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, feature, 1 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification 5 | 6 | 1. Examine `Export to PDF` button (the one next to the `Source` button). 7 | 8 | **Expected:** 9 | 10 | Button is clickable. 11 | 12 | **Unexpected:** 13 | 14 | Button is inactive. 15 | 16 | 1. Click the button. 17 | 1. Wait for the file to download. 18 | 19 | **Expected:** 20 | 21 | File with correct content was downloaded. 22 | 23 | **Unexpected:** 24 | 25 | File was not downloaded or its content is incorrect. 26 | 27 | 1. Click `Toggle read-only mode` button. 28 | 1. Repeat steps 1-3. 29 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/stylesheets.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, feature, 31 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: toolbar, basicstyles, notification 5 | 6 | **Note:** This test uses Bootstrap CDN. If something goes wrong, check if the link works correctly first. 7 | 8 | 1. Use `Export to PDF` button in the first editor. 9 | 1. Open generated file. 10 | 11 | **Expected:** 12 | 13 | Text from editor was converted to a green badge. 14 | 15 | **Unexpected:** 16 | 17 | Content is the same as in the editor. 18 | 19 | 1. Repeat the same steps for the second and third editor. 20 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.html: -------------------------------------------------------------------------------- 1 |
2 |

Foo bar

3 |
4 | 5 |
6 | 7 | 24 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, feature, 77 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format 5 | 6 | Note: You need the Internet connection to run this test. 7 | 8 | 1. Click `Export to PDF` toolbar button. 9 | 1. Examine the area in the red frame below. 10 | 11 | **Expected:** There is a long token string in the frame. 12 | 13 | **Unexpected:** Frame is empty or says 'undefined'. 14 | 15 | 1. Wait for the file to download and open it. 16 | 17 | **Expected:** No information about being created with CKEditor was added. 18 | 19 | **Unexpected:** There is an additional note about CKEditor at the bottom of page. 20 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, feature, 77 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format 5 | 6 | Note: You need the Internet connection to run this test. 7 | 8 | 1. Click `Export to PDF` button in both editors. 9 | 10 | 1. Examine the area in the red frames below each editor. 11 | 12 | **Expected:** Content of two boxes are two different long strings. 13 | 14 | **Unexpected:** Values in both boxes are the same or one of them says `undefined`. 15 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.md: -------------------------------------------------------------------------------- 1 | @bender-tags: exportpdf, feature, 77 2 | @bender-ui: collapsed 3 | @bender-include: ../_helpers/tools.js 4 | @bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format 5 | 6 | Note: You need the Internet connection to run this test. 7 | 8 | 1. Click `Export to PDF` button in both editors. 9 | 10 | 1. Examine the area in the red frames below each editor. 11 | 12 | **Expected:** First box contains token value and the second one `undefined`. 13 | 14 | **Unexpected:** Values in both boxes are the same or none of them is `undefined`. 15 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.html: -------------------------------------------------------------------------------- 1 |
2 |

Foo bar

3 |
4 | 5 |
6 | 7 | 20 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.html: -------------------------------------------------------------------------------- 1 |
2 |

Hello world!

3 |
4 | 5 |
6 |

Hello world!

7 |
8 | 9 | 21 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/imagebase/styles/imagebase.css: -------------------------------------------------------------------------------- 1 | [data-cke-caption-hidden] { 2 | display: none; 3 | } 4 | 5 | [data-cke-caption-placeholder]::before { 6 | display: inline; 7 | color: rgba( 0, 0, 0, .4 ); 8 | content: attr( data-cke-caption-placeholder ); 9 | } 10 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/preview/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/preview/images/pagebreak.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/preview/styles/screen.css: -------------------------------------------------------------------------------- 1 | div[style*="page-break-after"] { 2 | background:url( ../images/pagebreak.gif ) no-repeat center center; 3 | clear:both; 4 | width:100%; 5 | border-top:#999 1px dotted; 6 | border-bottom:#999 1px dotted; 7 | padding:0; 8 | height:7px; 9 | cursor:default; 10 | } 11 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | SCAYT plugin for CKEditor 4 Changelog 2 | ==================== 3 | 4 | The full changelog of the SCAYT plugin for CKEditor 4 can be found on our website under the [release notes](https://webspellchecker.com/release-notes/) section. 5 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- 1 | div.cke_dialog_ui_scaytItemList { 2 | border: 1px solid #c9cccf; 3 | } 4 | 5 | .cke_scaytItemList-child { 6 | position: relative; 7 | padding: 6px 30px 6px 5px; 8 | overflow: hidden; 9 | text-overflow: ellipsis; 10 | white-space: nowrap; 11 | } 12 | 13 | .cke_scaytItemList-child:hover { 14 | background: #ebebeb; 15 | } 16 | 17 | .cke_scaytItemList-child .cke_scaytItemList_remove { 18 | position: absolute; 19 | top: 0; 20 | right: 5px; 21 | width: 26px; 22 | height: 26px; 23 | } 24 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css: -------------------------------------------------------------------------------- 1 | .scayt-lang-list > div 2 | { 3 | padding-bottom: 6px !important; 4 | } 5 | 6 | .scayt-lang-list > div input 7 | { 8 | margin-right: 4px; 9 | } 10 | 11 | #scayt_about_ 12 | { 13 | margin: 30px auto 0 auto; 14 | } 15 | 16 | #scayt_about_ p 17 | { 18 | text-align: center; 19 | margin-bottom: 10px; 20 | } 21 | 22 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button 23 | { 24 | margin-top: 0; 25 | } 26 | -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/icons/hidpi/spellchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/wsc/icons/hidpi/spellchecker.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/icons/spellchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/plugins/wsc/icons/spellchecker.png -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","af",{btnIgnore:"Ignoreer",btnIgnoreAll:"Ignoreer alles",btnReplace:"Vervang",btnReplaceAll:"vervang alles",btnUndo:"Ontdoen",changeTo:"Verander na",errorLoading:"Fout by inlaai van diens: %s.",ieSpellDownload:"Speltoetser is nie geïnstalleer nie. Wil u dit nou aflaai?",manyChanges:"Klaar met speltoets: %1 woorde verander",noChanges:"Klaar met speltoets: Geen woorde verander nie",noMispell:"Klaar met speltoets: Geen foute nie",noSuggestions:"- Geen voorstel -",notAvailable:"Jammer, hierdie diens is nie nou beskikbaar nie.", 2 | notInDic:"Nie in woordeboek nie",oneChange:"Klaar met speltoets: Een woord verander",progress:"Spelling word getoets...",title:"Speltoetser",toolbar:"Speltoets"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ar",{btnIgnore:"تجاهل",btnIgnoreAll:"تجاهل الكل",btnReplace:"تغيير",btnReplaceAll:"تغيير الكل",btnUndo:"تراجع",changeTo:"التغيير إلى",errorLoading:"خطأ في تحميل تطبيق خدمة الاستضافة: %s.",ieSpellDownload:"المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟",manyChanges:"تم إكمال التدقيق الإملائي: تم تغيير %1 من كلمات",noChanges:"تم التدقيق الإملائي: لم يتم تغيير أي كلمة",noMispell:"تم التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية",noSuggestions:"- لا توجد إقتراحات -", 2 | notAvailable:"عفواً، ولكن هذه الخدمة غير متاحة الان",notInDic:"ليست في القاموس",oneChange:"تم التدقيق الإملائي: تم تغيير كلمة واحدة فقط",progress:"جاري التدقيق الاملائى",title:"التدقيق الإملائي",toolbar:"تدقيق إملائي"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","bg",{btnIgnore:"Игнорирай",btnIgnoreAll:"Игнорирай всичко",btnReplace:"Препокриване",btnReplaceAll:"Препокрий всичко",btnUndo:"Възтанови",changeTo:"Промени на",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- Няма препоръчани -", 2 | notAvailable:"Съжаляваме, но услугата не е достъпна за момента",notInDic:"Не е в речника",oneChange:"Spell check complete: One word changed",progress:"Проверява се правописа...",title:"Проверка на правопис",toolbar:"Проверка на правопис"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","bn",{btnIgnore:"ইগনোর কর",btnIgnoreAll:"সব ইগনোর কর",btnReplace:"বদলে দাও",btnReplaceAll:"সব বদলে দাও",btnUndo:"আন্ডু",changeTo:"এতে বদলাও",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?",manyChanges:"বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে",noChanges:"বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি",noMispell:"বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি",noSuggestions:"- কোন সাজেশন নেই -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"শব্দকোষে নেই",oneChange:"বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে",progress:"বানান পরীক্ষা চলছে...",title:"Spell Checker",toolbar:"বানান চেক"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","bs",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -",notAvailable:"Sorry, but service is unavailable now.", 2 | notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","cs",{btnIgnore:"Přeskočit",btnIgnoreAll:"Přeskakovat vše",btnReplace:"Zaměnit",btnReplaceAll:"Zaměňovat vše",btnUndo:"Zpět",changeTo:"Změnit na",errorLoading:"Chyba nahrávání služby aplikace z: %s.",ieSpellDownload:"Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?",manyChanges:"Kontrola pravopisu dokončena: %1 slov změněno",noChanges:"Kontrola pravopisu dokončena: Beze změn",noMispell:"Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny", 2 | noSuggestions:"- žádné návrhy -",notAvailable:"Omlouváme se, ale služba nyní není dostupná.",notInDic:"Není ve slovníku",oneChange:"Kontrola pravopisu dokončena: Jedno slovo změněno",progress:"Probíhá kontrola pravopisu...",title:"Kontrola pravopisu",toolbar:"Zkontrolovat pravopis"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","cy",{btnIgnore:"Anwybyddu Un",btnIgnoreAll:"Anwybyddu Pob",btnReplace:"Amnewid Un",btnReplaceAll:"Amnewid Pob",btnUndo:"Dadwneud",changeTo:"Newid i",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Gwirydd sillafu heb ei arsefydlu. A ydych am ei lawrlwytho nawr?",manyChanges:"Gwirio sillafu wedi gorffen: Newidiwyd %1 gair",noChanges:"Gwirio sillafu wedi gorffen: Dim newidiadau",noMispell:"Gwirio sillafu wedi gorffen: Dim camsillaf.",noSuggestions:"- Dim awgrymiadau -", 2 | notAvailable:"Nid yw'r gwasanaeth hwn ar gael yn bresennol.",notInDic:"Nid i'w gael yn y geiriadur",oneChange:"Gwirio sillafu wedi gorffen: Newidiwyd 1 gair",progress:"Gwirio sillafu yn ar y gweill...",title:"Gwirio Sillafu",toolbar:"Gwirio Sillafu"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","da",{btnIgnore:"Ignorér",btnIgnoreAll:"Ignorér alle",btnReplace:"Erstat",btnReplaceAll:"Erstat alle",btnUndo:"Tilbage",changeTo:"Forslag",errorLoading:"Fejl ved indlæsning af host: %s.",ieSpellDownload:"Stavekontrol ikke installeret. Vil du installere den nu?",manyChanges:"Stavekontrol færdig: %1 ord ændret",noChanges:"Stavekontrol færdig: Ingen ord ændret",noMispell:"Stavekontrol færdig: Ingen fejl fundet",noSuggestions:"(ingen forslag)",notAvailable:"Stavekontrol er desværre ikke tilgængelig.", 2 | notInDic:"Ikke i ordbogen",oneChange:"Stavekontrol færdig: Et ord ændret",progress:"Stavekontrollen arbejder...",title:"Stavekontrol",toolbar:"Stavekontrol"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","en-au",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","en-ca",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","en-gb",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","en",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -",notAvailable:"Sorry, but service is unavailable now.", 2 | notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","fa",{btnIgnore:"چشمپوشی",btnIgnoreAll:"چشمپوشی همه",btnReplace:"جایگزینی",btnReplaceAll:"جایگزینی همه",btnUndo:"واچینش",changeTo:"تغییر به",errorLoading:"خطا در بارگیری برنامه خدمات میزبان: %s.",ieSpellDownload:"بررسی کنندهٴ املا نصب نشده است. آیا میخواهید آن را هماکنون دریافت کنید؟",manyChanges:"بررسی املا انجام شد. %1 واژه تغییر یافت",noChanges:"بررسی املا انجام شد. هیچ واژهای تغییر نیافت",noMispell:"بررسی املا انجام شد. هیچ غلط املائی یافت نشد",noSuggestions:"- پیشنهادی نیست -", 2 | notAvailable:"با عرض پوزش خدمات الان در دسترس نیستند.",notInDic:"در واژه~نامه یافت نشد",oneChange:"بررسی املا انجام شد. یک واژه تغییر یافت",progress:"بررسی املا در حال انجام...",title:"بررسی املا",toolbar:"بررسی املا"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","fi",{btnIgnore:"Jätä huomioimatta",btnIgnoreAll:"Jätä kaikki huomioimatta",btnReplace:"Korvaa",btnReplaceAll:"Korvaa kaikki",btnUndo:"Kumoa",changeTo:"Vaihda",errorLoading:"Virhe ladattaessa oikolukupalvelua isännältä: %s.",ieSpellDownload:"Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?",manyChanges:"Tarkistus valmis: %1 sanaa muutettiin",noChanges:"Tarkistus valmis: Yhtään sanaa ei muutettu",noMispell:"Tarkistus valmis: Ei virheitä",noSuggestions:"Ei ehdotuksia", 2 | notAvailable:"Valitettavasti oikoluku ei ole käytössä tällä hetkellä.",notInDic:"Ei sanakirjassa",oneChange:"Tarkistus valmis: Yksi sana muutettiin",progress:"Tarkistus käynnissä...",title:"Oikoluku",toolbar:"Tarkista oikeinkirjoitus"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","fo",{btnIgnore:"Forfjóna",btnIgnoreAll:"Forfjóna alt",btnReplace:"Yvirskriva",btnReplaceAll:"Yvirskriva alt",btnUndo:"Angra",changeTo:"Broyt til",errorLoading:"Feilur við innlesing av application service host: %s.",ieSpellDownload:"Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?",manyChanges:"Rættstavarin liðugur: %1 orð broytt",noChanges:"Rættstavarin liðugur: Einki orð varð broytt",noMispell:"Rættstavarin liðugur: Eingin feilur funnin",noSuggestions:"- Einki uppskot -", 2 | notAvailable:"Tíverri, ikki tøkt í løtuni.",notInDic:"Finst ikki í orðabókini",oneChange:"Rættstavarin liðugur: Eitt orð er broytt",progress:"Rættstavarin arbeiðir...",title:"Kanna stavseting",toolbar:"Kanna stavseting"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","gu",{btnIgnore:"ઇગ્નોર/અવગણના કરવી",btnIgnoreAll:"બધાની ઇગ્નોર/અવગણના કરવી",btnReplace:"બદલવું",btnReplaceAll:"બધા બદલી કરો",btnUndo:"અન્ડૂ",changeTo:"આનાથી બદલવું",errorLoading:"સર્વિસ એપ્લીકેશન લોડ નથી થ: %s.",ieSpellDownload:"સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?",manyChanges:"શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે",noChanges:"શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી",noMispell:"શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી", 2 | noSuggestions:"- કઇ સજેશન નથી -",notAvailable:"માફ કરશો, આ સુવિધા ઉપલબ્ધ નથી",notInDic:"શબ્દકોશમાં નથી",oneChange:"શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે",progress:"શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...",title:"સ્પેલ ",toolbar:"જોડણી (સ્પેલિંગ) તપાસવી"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","he",{btnIgnore:"התעלמות",btnIgnoreAll:"התעלמות מהכל",btnReplace:"החלפה",btnReplaceAll:"החלפת הכל",btnUndo:"החזרה",changeTo:"שינוי ל",errorLoading:"שגיאה בהעלאת השירות: %s.",ieSpellDownload:"בודק האיות לא מותקן, האם להורידו?",manyChanges:"בדיקות איות הסתיימה: %1 מילים שונו",noChanges:"בדיקות איות הסתיימה: לא שונתה אף מילה",noMispell:"בדיקות איות הסתיימה: לא נמצאו שגיאות כתיב",noSuggestions:"- אין הצעות -",notAvailable:"לא נמצא שירות זמין.",notInDic:"לא נמצא במילון", 2 | oneChange:"בדיקות איות הסתיימה: שונתה מילה אחת",progress:"בודק האיות בתהליך בדיקה....",title:"בדיקת איות",toolbar:"בדיקת איות"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","hi",{btnIgnore:"इग्नोर",btnIgnoreAll:"सभी इग्नोर करें",btnReplace:"रिप्लेस",btnReplaceAll:"सभी रिप्लेस करें",btnUndo:"अन्डू",changeTo:"इसमें बदलें",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डाउनलोड करना चाहेंगे?",manyChanges:"वर्तनी की जाँच : %1 शब्द बदले गये",noChanges:"वर्तनी की जाँच :कोई शब्द नहीं बदला गया",noMispell:"वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई",noSuggestions:"- कोई सुझाव नहीं -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"शब्दकोश में नहीं",oneChange:"वर्तनी की जाँच : एक शब्द बदला गया",progress:"वर्तनी की जाँच (स्पॅल-चॅक) जारी है...",title:"Spell Checker",toolbar:"वर्तनी (स्पेलिंग) जाँच"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","hr",{btnIgnore:"Zanemari",btnIgnoreAll:"Zanemari sve",btnReplace:"Zamijeni",btnReplaceAll:"Zamijeni sve",btnUndo:"Vrati",changeTo:"Promijeni u",errorLoading:"Greška učitavanja aplikacije: %s.",ieSpellDownload:"Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?",manyChanges:"Provjera završena: Promijenjeno %1 riječi",noChanges:"Provjera završena: Nije napravljena promjena",noMispell:"Provjera završena: Nema grešaka",noSuggestions:"-Nema preporuke-", 2 | notAvailable:"Žao nam je, ali usluga trenutno nije dostupna.",notInDic:"Nije u rječniku",oneChange:"Provjera završena: Jedna riječ promjenjena",progress:"Provjera u tijeku...",title:"Provjera pravopisa",toolbar:"Provjeri pravopis"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","is",{btnIgnore:"Hunsa",btnIgnoreAll:"Hunsa allt",btnReplace:"Skipta",btnReplaceAll:"Skipta öllu",btnUndo:"Til baka",changeTo:"Tillaga",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Villuleit ekki sett upp.\x3cbr\x3eViltu setja hana upp?",manyChanges:"Villuleit lokið: %1 orðum breytt",noChanges:"Villuleit lokið: Engu orði breytt",noMispell:"Villuleit lokið: Engin villa fannst",noSuggestions:"- engar tillögur -",notAvailable:"Sorry, but service is unavailable now.", 2 | notInDic:"Ekki í orðabókinni",oneChange:"Villuleit lokið: Einu orði breytt",progress:"Villuleit í gangi...",title:"Spell Checker",toolbar:"Villuleit"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ja",{btnIgnore:"無視",btnIgnoreAll:"すべて無視",btnReplace:"置換",btnReplaceAll:"すべて置換",btnUndo:"やり直し",changeTo:"変更",errorLoading:"アプリケーションサービスホスト読込みエラー: %s.",ieSpellDownload:"スペルチェッカーがインストールされていません。今すぐダウンロードしますか?",manyChanges:"スペルチェック完了: %1 語句変更されました",noChanges:"スペルチェック完了: 語句は変更されませんでした",noMispell:"スペルチェック完了: スペルの誤りはありませんでした",noSuggestions:"- 該当なし -",notAvailable:"申し訳ありません、現在サービスを利用することができません",notInDic:"辞書にありません",oneChange:"スペルチェック完了: 1語句変更されました",progress:"スペルチェック処理中...",title:"スペルチェック", 2 | toolbar:"スペルチェック"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ka",{btnIgnore:"უგულებელყოფა",btnIgnoreAll:"ყველას უგულებელყოფა",btnReplace:"შეცვლა",btnReplaceAll:"ყველას შეცვლა",btnUndo:"გაუქმება",changeTo:"შეცვლელი",errorLoading:"სერვისის გამოძახების შეცდომა: %s.",ieSpellDownload:"მართლწერის შემოწმება არაა დაინსტალირებული. ჩამოვქაჩოთ ინტერნეტიდან?",manyChanges:"მართლწერის შემოწმება: %1 სიტყვა შეიცვალა",noChanges:"მართლწერის შემოწმება: არაფერი შეცვლილა",noMispell:"მართლწერის შემოწმება: შეცდომა არ მოიძებნა",noSuggestions:"- არაა შემოთავაზება -", 2 | notAvailable:"უკაცრავად, ეს სერვისი ამჟამად მიუწვდომელია.",notInDic:"არაა ლექსიკონში",oneChange:"მართლწერის შემოწმება: ერთი სიტყვა შეიცვალა",progress:"მიმდინარეობს მართლწერის შემოწმება...",title:"მართლწერა",toolbar:"მართლწერა"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ko",{btnIgnore:"건너뜀",btnIgnoreAll:"모두 건너뜀",btnReplace:"변경",btnReplaceAll:"모두 변경",btnUndo:"취소",changeTo:"변경할 단어",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?",manyChanges:"철자검사 완료: %1 단어가 변경되었습니다.",noChanges:"철자검사 완료: 변경된 단어가 없습니다.",noMispell:"철자검사 완료: 잘못된 철자가 없습니다.",noSuggestions:"- 추천단어 없음 -",notAvailable:"Sorry, but service is unavailable now.",notInDic:"사전에 없는 단어",oneChange:"철자검사 완료: 단어가 변경되었습니다.", 2 | progress:"철자검사를 진행중입니다...",title:"Spell Check",toolbar:"철자검사"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","lt",{btnIgnore:"Ignoruoti",btnIgnoreAll:"Ignoruoti visus",btnReplace:"Pakeisti",btnReplaceAll:"Pakeisti visus",btnUndo:"Atšaukti",changeTo:"Pakeisti į",errorLoading:"Klaida įkraunant servisą: %s.",ieSpellDownload:"Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?",manyChanges:"Rašybos tikrinimas baigtas: Pakeista %1 žodžių",noChanges:"Rašybos tikrinimas baigtas: Nėra pakeistų žodžių",noMispell:"Rašybos tikrinimas baigtas: Nerasta rašybos klaidų", 2 | noSuggestions:"- Nėra pasiūlymų -",notAvailable:"Atleiskite, šiuo metu servisas neprieinamas.",notInDic:"Žodyne nerastas",oneChange:"Rašybos tikrinimas baigtas: Vienas žodis pakeistas",progress:"Vyksta rašybos tikrinimas...",title:"Tikrinti klaidas",toolbar:"Rašybos tikrinimas"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","mk",{btnIgnore:"Ignore",btnIgnoreAll:"Ignore All",btnReplace:"Replace",btnReplaceAll:"Replace All",btnUndo:"Undo",changeTo:"Change to",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Spell checker not installed. Do you want to download it now?",manyChanges:"Spell check complete: %1 words changed",noChanges:"Spell check complete: No words changed",noMispell:"Spell check complete: No misspellings found",noSuggestions:"- No suggestions -",notAvailable:"Sorry, but service is unavailable now.", 2 | notInDic:"Not in dictionary",oneChange:"Spell check complete: One word changed",progress:"Spell check in progress...",title:"Spell Checker",toolbar:"Check Spelling"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","mn",{btnIgnore:"Зөвшөөрөх",btnIgnoreAll:"Бүгдийг зөвшөөрөх",btnReplace:"Солих",btnReplaceAll:"Бүгдийг Дарж бичих",btnUndo:"Буцаах",changeTo:"Өөрчлөх",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?",manyChanges:"Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн",noChanges:"Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй",noMispell:"Дүрэм шалгаад дууссан: Алдаа олдсонгүй",noSuggestions:"- Тайлбаргүй -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"Толь бичиггүй",oneChange:"Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн",progress:"Дүрэм шалгаж байгаа үйл явц...",title:"Spell Checker",toolbar:"Үгийн дүрэх шалгах"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ms",{btnIgnore:"Biar",btnIgnoreAll:"Biarkan semua",btnReplace:"Ganti",btnReplaceAll:"Gantikan Semua",btnUndo:"Batalkan",changeTo:"Tukarkan kepada",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?",manyChanges:"Pemeriksaan ejaan siap: %1 perkataan diubah",noChanges:"Pemeriksaan ejaan siap: Tiada perkataan diubah",noMispell:"Pemeriksaan ejaan siap: Tiada salah ejaan",noSuggestions:"- Tiada cadangan -", 2 | notAvailable:"Sorry, but service is unavailable now.",notInDic:"Tidak terdapat didalam kamus",oneChange:"Pemeriksaan ejaan siap: Satu perkataan telah diubah",progress:"Pemeriksaan ejaan sedang diproses...",title:"Spell Checker",toolbar:"Semak Ejaan"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","nb",{btnIgnore:"Ignorer",btnIgnoreAll:"Ignorer alle",btnReplace:"Erstatt",btnReplaceAll:"Erstatt alle",btnUndo:"Angre",changeTo:"Endre til",errorLoading:"Feil under lasting av applikasjonstjenestetjener: %s.",ieSpellDownload:"Stavekontroll er ikke installert. Vil du laste den ned nå?",manyChanges:"Stavekontroll fullført: %1 ord endret",noChanges:"Stavekontroll fullført: ingen ord endret",noMispell:"Stavekontroll fullført: ingen feilstavinger funnet",noSuggestions:"- Ingen forslag -", 2 | notAvailable:"Beklager, tjenesten er utilgjenglig nå.",notInDic:"Ikke i ordboken",oneChange:"Stavekontroll fullført: Ett ord endret",progress:"Stavekontroll pågår...",title:"Stavekontroll",toolbar:"Stavekontroll"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","no",{btnIgnore:"Ignorer",btnIgnoreAll:"Ignorer alle",btnReplace:"Erstatt",btnReplaceAll:"Erstatt alle",btnUndo:"Angre",changeTo:"Endre til",errorLoading:"Feil under lasting av applikasjonstjenestetjener: %s.",ieSpellDownload:"Stavekontroll er ikke installert. Vil du laste den ned nå?",manyChanges:"Stavekontroll fullført: %1 ord endret",noChanges:"Stavekontroll fullført: ingen ord endret",noMispell:"Stavekontroll fullført: ingen feilstavinger funnet",noSuggestions:"- Ingen forslag -", 2 | notAvailable:"Beklager, tjenesten er utilgjenglig nå.",notInDic:"Ikke i ordboken",oneChange:"Stavekontroll fullført: Ett ord endret",progress:"Stavekontroll pågår...",title:"Stavekontroll",toolbar:"Stavekontroll"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","pl",{btnIgnore:"Ignoruj",btnIgnoreAll:"Ignoruj wszystkie",btnReplace:"Zmień",btnReplaceAll:"Zmień wszystkie",btnUndo:"Cofnij",changeTo:"Zmień na",errorLoading:"Błąd wczytywania hosta aplikacji usługi: %s.",ieSpellDownload:"Słownik nie jest zainstalowany. Czy chcesz go pobrać?",manyChanges:"Sprawdzanie zakończone: zmieniono %l słów",noChanges:"Sprawdzanie zakończone: nie zmieniono żadnego słowa",noMispell:"Sprawdzanie zakończone: nie znaleziono błędów",noSuggestions:"- Brak sugestii -", 2 | notAvailable:"Przepraszamy, ale usługa jest obecnie niedostępna.",notInDic:"Słowa nie ma w słowniku",oneChange:"Sprawdzanie zakończone: zmieniono jedno słowo",progress:"Trwa sprawdzanie...",title:"Sprawdź pisownię",toolbar:"Sprawdź pisownię"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","sl",{btnIgnore:"Prezri",btnIgnoreAll:"Prezri vse",btnReplace:"Zamenjaj",btnReplaceAll:"Zamenjaj vse",btnUndo:"Razveljavi",changeTo:"Spremeni v",errorLoading:"Napaka pri nalaganju storitve programa na naslovu %s.",ieSpellDownload:"Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?",manyChanges:"Črkovanje je končano: Spremenjenih je bilo %1 besed",noChanges:"Črkovanje je končano: Nobena beseda ni bila spremenjena",noMispell:"Črkovanje je končano: Brez napak",noSuggestions:"- Ni predlogov -", 2 | notAvailable:"Oprostite, storitev trenutno ni dosegljiva.",notInDic:"Ni v slovarju",oneChange:"Črkovanje je končano: Spremenjena je bila ena beseda",progress:"Preverjanje črkovanja se izvaja...",title:"Črkovalnik",toolbar:"Preveri črkovanje"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","sv",{btnIgnore:"Ignorera",btnIgnoreAll:"Ignorera alla",btnReplace:"Ersätt",btnReplaceAll:"Ersätt alla",btnUndo:"Ångra",changeTo:"Ändra till",errorLoading:"Tjänsten är ej tillgänglig: %s.",ieSpellDownload:"Stavningskontrollen är ej installerad. Vill du göra det nu?",manyChanges:"Stavningskontroll slutförd: %1 ord rättades.",noChanges:"Stavningskontroll slutförd: Inga ord rättades.",noMispell:"Stavningskontroll slutförd: Inga stavfel påträffades.",noSuggestions:"- Förslag saknas -", 2 | notAvailable:"Tyvärr är tjänsten ej tillgänglig nu",notInDic:"Saknas i ordlistan",oneChange:"Stavningskontroll slutförd: Ett ord rättades.",progress:"Stavningskontroll pågår...",title:"Kontrollera stavning",toolbar:"Stavningskontroll"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","th",{btnIgnore:"ยกเว้น",btnIgnoreAll:"ยกเว้นทั้งหมด",btnReplace:"แทนที่",btnReplaceAll:"แทนที่ทั้งหมด",btnUndo:"ยกเลิก",changeTo:"แก้ไขเป็น",errorLoading:"Error loading application service host: %s.",ieSpellDownload:"ไม่ได้ติดตั้งระบบตรวจสอบคำสะกด. ต้องการติดตั้งไหมครับ?",manyChanges:"ตรวจสอบคำสะกดเสร็จสิ้น:: แก้ไข %1 คำ",noChanges:"ตรวจสอบคำสะกดเสร็จสิ้น: ไม่มีการแก้คำใดๆ",noMispell:"ตรวจสอบคำสะกดเสร็จสิ้น: ไม่พบคำสะกดผิด",noSuggestions:"- ไม่มีคำแนะนำใดๆ -",notAvailable:"Sorry, but service is unavailable now.", 2 | notInDic:"ไม่พบในดิกชันนารี",oneChange:"ตรวจสอบคำสะกดเสร็จสิ้น: แก้ไข1คำ",progress:"กำลังตรวจสอบคำสะกด...",title:"Spell Checker",toolbar:"ตรวจการสะกดคำ"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","tr",{btnIgnore:"Yoksay",btnIgnoreAll:"Tümünü Yoksay",btnReplace:"Değiştir",btnReplaceAll:"Tümünü Değiştir",btnUndo:"Geri Al",changeTo:"Şuna değiştir:",errorLoading:"Uygulamada yüklerken hata oluştu: %s.",ieSpellDownload:"Yazım denetimi yüklenmemiş. Şimdi yüklemek ister misiniz?",manyChanges:"Yazım denetimi tamamlandı: %1 kelime değiştirildi",noChanges:"Yazım denetimi tamamlandı: Hiçbir kelime değiştirilmedi",noMispell:"Yazım denetimi tamamlandı: Yanlış yazıma rastlanmadı", 2 | noSuggestions:"- Öneri Yok -",notAvailable:"Üzügünüz, bu servis şuanda hizmet dışıdır.",notInDic:"Sözlükte Yok",oneChange:"Yazım denetimi tamamlandı: Bir kelime değiştirildi",progress:"Yazım denetimi işlemde...",title:"Yazımı Denetle",toolbar:"Yazım Denetimi"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","ug",{btnIgnore:"پەرۋا قىلما",btnIgnoreAll:"ھەممىگە پەرۋا قىلما",btnReplace:"ئالماشتۇر",btnReplaceAll:"ھەممىنى ئالماشتۇر",btnUndo:"يېنىۋال",changeTo:"ئۆزگەرت",errorLoading:"لازىملىق مۇلازىمېتىرنى يۈكلىگەندە خاتالىق كۆرۈلدى: %s.",ieSpellDownload:"ئىملا تەكشۈرۈش قىستۇرمىسى تېخى ئورنىتىلمىغان، ھازىرلا چۈشۈرەمسىز؟",manyChanges:"ئىملا تەكشۈرۈش تامام: %1 سۆزنى ئۆزگەرتتى",noChanges:"ئىملا تەكشۈرۈش تامام: ھېچقانداق سۆزنى ئۆزگەرتمىدى",noMispell:"ئىملا تەكشۈرۈش تامام: ئىملا خاتالىقى بايقالمىدى", 2 | noSuggestions:"-تەكلىپ يوق-",notAvailable:"كەچۈرۈڭ، مۇلازىمېتىرنى ۋاقتىنچە ئىشلەتكىلى بولمايدۇ",notInDic:"لۇغەتتە يوق",oneChange:"ئىملا تەكشۈرۈش تامام: بىر سۆزنى ئۆزگەرتتى",progress:"ئىملا تەكشۈرۈۋاتىدۇ…",title:"ئىملا تەكشۈر",toolbar:"ئىملا تەكشۈر"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","zh-cn",{btnIgnore:"忽略",btnIgnoreAll:"全部忽略",btnReplace:"替换",btnReplaceAll:"全部替换",btnUndo:"撤消",changeTo:"更改为",errorLoading:"加载应该服务主机时出错: %s.",ieSpellDownload:"拼写检查插件还没安装, 您是否想现在就下载?",manyChanges:"拼写检查完成: 更改了 %1 个单词",noChanges:"拼写检查完成: 没有更改任何单词",noMispell:"拼写检查完成: 没有发现拼写错误",noSuggestions:"- 没有建议 -",notAvailable:"抱歉, 服务目前暂不可用",notInDic:"没有在字典里",oneChange:"拼写检查完成: 更改了一个单词",progress:"正在进行拼写检查...",title:"拼写检查",toolbar:"拼写检查"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/plugins/wsc/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("wsc","zh",{btnIgnore:"忽略",btnIgnoreAll:"全部忽略",btnReplace:"取代",btnReplaceAll:"全部取代",btnUndo:"復原",changeTo:"更改為",errorLoading:"無法聯系侍服器: %s.",ieSpellDownload:"尚未安裝拼字檢查元件。您是否想要現在下載?",manyChanges:"拼字檢查完成:更改了 %1 個單字",noChanges:"拼字檢查完成:未更改任何單字",noMispell:"拼字檢查完成:未發現拼字錯誤",noSuggestions:"- 無建議值 -",notAvailable:"抱歉,服務目前暫不可用",notInDic:"不在字典中",oneChange:"拼字檢查完成:更改了 1 個單字",progress:"進行拼字檢查中…",title:"拼字檢查",toolbar:"拼字檢查"}); -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /public/backend/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /public/backend/ckeditor_4.16.2_full.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/ckeditor_4.16.2_full.zip -------------------------------------------------------------------------------- /public/backend/css/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0}.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} -------------------------------------------------------------------------------- /public/backend/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/backend/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/backend/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/backend/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/backend/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/backend/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/backend/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/backend/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/1.png -------------------------------------------------------------------------------- /public/backend/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/2.png -------------------------------------------------------------------------------- /public/backend/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/3.png -------------------------------------------------------------------------------- /public/backend/images/adminimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/adminimg.jpg -------------------------------------------------------------------------------- /public/backend/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/bg.jpg -------------------------------------------------------------------------------- /public/backend/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/close.png -------------------------------------------------------------------------------- /public/backend/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/mail.png -------------------------------------------------------------------------------- /public/backend/images/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/minimal.png -------------------------------------------------------------------------------- /public/backend/images/nav-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/nav-expand.png -------------------------------------------------------------------------------- /public/backend/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/next.png -------------------------------------------------------------------------------- /public/backend/images/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/pass.png -------------------------------------------------------------------------------- /public/backend/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/prev.png -------------------------------------------------------------------------------- /public/backend/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/backend/images/search-icon.png -------------------------------------------------------------------------------- /public/frontend/css/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .prettyprint .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | background-color: #F7F7F9; 12 | border: 1px solid #E8E8E8; 13 | font-size: 14px; 14 | padding: 8px; 15 | white-space:pre-wrap; 16 | } 17 | 18 | /* Specify class=linenums on a pre to get line numbering */ 19 | 20 | ol.linenums { 21 | margin: 0; 22 | padding-left: 33px; 23 | list-style-position: outside; 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 20px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /public/frontend/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/frontend/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/frontend/fonts/lg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/fonts/lg.eot -------------------------------------------------------------------------------- /public/frontend/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/fonts/lg.woff -------------------------------------------------------------------------------- /public/frontend/images/anh4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/anh4.jpg -------------------------------------------------------------------------------- /public/frontend/images/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/bag.png -------------------------------------------------------------------------------- /public/frontend/images/bag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/bag2.png -------------------------------------------------------------------------------- /public/frontend/images/bangtrangtri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/bangtrangtri.png -------------------------------------------------------------------------------- /public/frontend/images/businessman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/businessman.png -------------------------------------------------------------------------------- /public/frontend/images/caythong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/caythong.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/002.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/007.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter1.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter2.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter3.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter4.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter5.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter6.jpg -------------------------------------------------------------------------------- /public/frontend/images/chapter/chapter7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/chapter/chapter7.jpg -------------------------------------------------------------------------------- /public/frontend/images/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/customer.png -------------------------------------------------------------------------------- /public/frontend/images/densan1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/densan1.jpg -------------------------------------------------------------------------------- /public/frontend/images/densan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/densan2.jpg -------------------------------------------------------------------------------- /public/frontend/images/densan3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/densan3.jpg -------------------------------------------------------------------------------- /public/frontend/images/densan4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/densan4.jpg -------------------------------------------------------------------------------- /public/frontend/images/densan5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/densan5.jpg -------------------------------------------------------------------------------- /public/frontend/images/document/Giáo trình AutoCAD 2007 - Pham Van Hau.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/document/Giáo trình AutoCAD 2007 - Pham Van Hau.pdf -------------------------------------------------------------------------------- /public/frontend/images/document/New Microsoft Word Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/document/New Microsoft Word Document.docx -------------------------------------------------------------------------------- /public/frontend/images/document/file.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/document/file.docx -------------------------------------------------------------------------------- /public/frontend/images/document/Đánh Thức Con Người Phi Thường Trong Bạn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/document/Đánh Thức Con Người Phi Thường Trong Bạn.pdf -------------------------------------------------------------------------------- /public/frontend/images/dongho1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/dongho1.jpg -------------------------------------------------------------------------------- /public/frontend/images/dongho2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/dongho2.jpg -------------------------------------------------------------------------------- /public/frontend/images/dongho3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/dongho3.jpg -------------------------------------------------------------------------------- /public/frontend/images/giuonghano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/giuonghano.png -------------------------------------------------------------------------------- /public/frontend/images/giuongquada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/giuongquada.png -------------------------------------------------------------------------------- /public/frontend/images/giuongsago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/giuongsago.png -------------------------------------------------------------------------------- /public/frontend/images/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/home.jpg -------------------------------------------------------------------------------- /public/frontend/images/kebep1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/kebep1.jpg -------------------------------------------------------------------------------- /public/frontend/images/kebep1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/kebep1_1.png -------------------------------------------------------------------------------- /public/frontend/images/kebep2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/kebep2.jpg -------------------------------------------------------------------------------- /public/frontend/images/kebep2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/kebep2_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/km2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/km2.jpg -------------------------------------------------------------------------------- /public/frontend/images/km3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/km3.jpg -------------------------------------------------------------------------------- /public/frontend/images/logo-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/logo-mail.png -------------------------------------------------------------------------------- /public/frontend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/logo.png -------------------------------------------------------------------------------- /public/frontend/images/logommh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/logommh.png -------------------------------------------------------------------------------- /public/frontend/images/lookbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/lookbook.png -------------------------------------------------------------------------------- /public/frontend/images/metalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/metalogo.png -------------------------------------------------------------------------------- /public/frontend/images/sao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sao.jpg -------------------------------------------------------------------------------- /public/frontend/images/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/searchicon.png -------------------------------------------------------------------------------- /public/frontend/images/set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/set.jpg -------------------------------------------------------------------------------- /public/frontend/images/set1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/set1.png -------------------------------------------------------------------------------- /public/frontend/images/set2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/set2.png -------------------------------------------------------------------------------- /public/frontend/images/sharing&loving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sharing&loving.png -------------------------------------------------------------------------------- /public/frontend/images/slider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/slider3.png -------------------------------------------------------------------------------- /public/frontend/images/sliderlast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sliderlast.png -------------------------------------------------------------------------------- /public/frontend/images/sofabang1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofabang1.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofabang2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofabang2.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofabang3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofabang3.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofabang4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofabang4.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofabang5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofabang5.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofagoc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofagoc1.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofagoc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofagoc2.jpg -------------------------------------------------------------------------------- /public/frontend/images/sofagoc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/sofagoc3.jpg -------------------------------------------------------------------------------- /public/frontend/images/thongkho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/thongkho.jpg -------------------------------------------------------------------------------- /public/frontend/images/thongkho_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/thongkho_1.jpg -------------------------------------------------------------------------------- /public/frontend/images/thungrac1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/thungrac1.jpg -------------------------------------------------------------------------------- /public/frontend/images/thungrac2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/thungrac2.jpg -------------------------------------------------------------------------------- /public/frontend/images/thungrac3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/thungrac3.jpg -------------------------------------------------------------------------------- /public/frontend/images/tip1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tip1.jpg -------------------------------------------------------------------------------- /public/frontend/images/tip2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tip2.jpg -------------------------------------------------------------------------------- /public/frontend/images/tip3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tip3.jpg -------------------------------------------------------------------------------- /public/frontend/images/tranh1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tranh1.jpg -------------------------------------------------------------------------------- /public/frontend/images/tranh2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tranh2.jpg -------------------------------------------------------------------------------- /public/frontend/images/tranh3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tranh3.jpg -------------------------------------------------------------------------------- /public/frontend/images/tuqa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuqa1.png -------------------------------------------------------------------------------- /public/frontend/images/tuqa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuqa2.jpg -------------------------------------------------------------------------------- /public/frontend/images/tuqa3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuqa3.png -------------------------------------------------------------------------------- /public/frontend/images/tuqa4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuqa4.png -------------------------------------------------------------------------------- /public/frontend/images/tuqa5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuqa5.png -------------------------------------------------------------------------------- /public/frontend/images/tutv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tutv1.png -------------------------------------------------------------------------------- /public/frontend/images/tutv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tutv2.png -------------------------------------------------------------------------------- /public/frontend/images/tutv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tutv3.png -------------------------------------------------------------------------------- /public/frontend/images/tutv4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tutv4.png -------------------------------------------------------------------------------- /public/frontend/images/tutv5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tutv5.png -------------------------------------------------------------------------------- /public/frontend/images/tuyendung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/tuyendung.png -------------------------------------------------------------------------------- /public/frontend/images/udtv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/udtv.png -------------------------------------------------------------------------------- /public/frontend/images/udtv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/frontend/images/udtv2.png -------------------------------------------------------------------------------- /public/uploads/ckeditor/123_1601205087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/123_1601205087.jpg -------------------------------------------------------------------------------- /public/uploads/ckeditor/123_1601215277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/123_1601215277.jpg -------------------------------------------------------------------------------- /public/uploads/ckeditor/1444_SmartheartPuppy_1601206645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/1444_SmartheartPuppy_1601206645.jpg -------------------------------------------------------------------------------- /public/uploads/ckeditor/4.1_1635923666.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/4.1_1635923666.jfif -------------------------------------------------------------------------------- /public/uploads/ckeditor/4.1_1635923852.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/4.1_1635923852.jfif -------------------------------------------------------------------------------- /public/uploads/ckeditor/88_image_catalog_labrada_muscle_mass_12lbs_5_4kg_image_catalog_1587722741_1601207744.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/88_image_catalog_labrada_muscle_mass_12lbs_5_4kg_image_catalog_1587722741_1601207744.jpg -------------------------------------------------------------------------------- /public/uploads/ckeditor/gallery2_1601215815.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/gallery2_1601215815.jpg -------------------------------------------------------------------------------- /public/uploads/ckeditor/image-20211106120817-1_1636175297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/image-20211106120817-1_1636175297.png -------------------------------------------------------------------------------- /public/uploads/ckeditor/mayps1_1601215566.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/ckeditor/mayps1_1601215566.jpg -------------------------------------------------------------------------------- /public/uploads/contact/blog-three41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/contact/blog-three41.jpg -------------------------------------------------------------------------------- /public/uploads/contact/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/contact/logo3.png -------------------------------------------------------------------------------- /public/uploads/contact/logo54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/contact/logo54.png -------------------------------------------------------------------------------- /public/uploads/document/Giáo trình AutoCAD 2007 - Pham Van Hau41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/Giáo trình AutoCAD 2007 - Pham Van Hau41.pdf -------------------------------------------------------------------------------- /public/uploads/document/Giáo trình AutoCAD 2007 - Pham Van Hau62.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/Giáo trình AutoCAD 2007 - Pham Van Hau62.pdf -------------------------------------------------------------------------------- /public/uploads/document/New Text Document44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/New Text Document44.txt -------------------------------------------------------------------------------- /public/uploads/document/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/file.pdf -------------------------------------------------------------------------------- /public/uploads/document/file82.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/file82.docx -------------------------------------------------------------------------------- /public/uploads/document/Đánh Thức Con Người Phi Thường Trong Bạn45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/document/Đánh Thức Con Người Phi Thường Trong Bạn45.pdf -------------------------------------------------------------------------------- /public/uploads/gallery/2021-10-29 (12)27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/2021-10-29 (12)27.png -------------------------------------------------------------------------------- /public/uploads/gallery/2021-10-29 (6)73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/2021-10-29 (6)73.png -------------------------------------------------------------------------------- /public/uploads/gallery/2021-10-29 (8)72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/2021-10-29 (8)72.png -------------------------------------------------------------------------------- /public/uploads/gallery/alieen184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/alieen184.png -------------------------------------------------------------------------------- /public/uploads/gallery/anh421.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/anh421.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/bag14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/bag14.png -------------------------------------------------------------------------------- /public/uploads/gallery/bag246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/bag246.png -------------------------------------------------------------------------------- /public/uploads/gallery/bangtrangtri84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/bangtrangtri84.png -------------------------------------------------------------------------------- /public/uploads/gallery/bee151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/bee151.png -------------------------------------------------------------------------------- /public/uploads/gallery/caythong89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/caythong89.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/dalat347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/dalat347.png -------------------------------------------------------------------------------- /public/uploads/gallery/dalat432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/dalat432.png -------------------------------------------------------------------------------- /public/uploads/gallery/densan193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/densan193.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/densan293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/densan293.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/densan324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/densan324.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/densan46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/densan46.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/densan541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/densan541.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/dongho141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/dongho141.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/dongho212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/dongho212.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/dongho324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/dongho324.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/fika14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/fika14.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuonghano5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuonghano5.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuonghano91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuonghano91.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongquada3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongquada3.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongquada30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongquada30.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongquada88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongquada88.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongsago25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongsago25.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongsago35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongsago35.png -------------------------------------------------------------------------------- /public/uploads/gallery/giuongsago99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/giuongsago99.png -------------------------------------------------------------------------------- /public/uploads/gallery/hano534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/hano534.png -------------------------------------------------------------------------------- /public/uploads/gallery/hasi125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/hasi125.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/hiro152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/hiro152.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/hiro223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/hiro223.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/kebep138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/kebep138.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/kebep266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/kebep266.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/net155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/net155.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/net279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/net279.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sao6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sao6.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/set187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/set187.png -------------------------------------------------------------------------------- /public/uploads/gallery/set255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/set255.png -------------------------------------------------------------------------------- /public/uploads/gallery/set5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/set5.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofabang136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofabang136.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofabang283.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofabang283.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofabang373.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofabang373.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofabang454.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofabang454.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofabang531.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofabang531.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofagoc187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofagoc187.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofagoc221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofagoc221.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/sofagoc370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/sofagoc370.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/thongkho47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/thongkho47.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/thungrac172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/thungrac172.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/thungrac214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/thungrac214.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/thungrac374.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/thungrac374.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/tranh192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tranh192.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/tranh269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tranh269.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/tranh35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tranh35.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/tuqa193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tuqa193.png -------------------------------------------------------------------------------- /public/uploads/gallery/tuqa219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tuqa219.jpg -------------------------------------------------------------------------------- /public/uploads/gallery/tuqa368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tuqa368.png -------------------------------------------------------------------------------- /public/uploads/gallery/tuqa456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tuqa456.png -------------------------------------------------------------------------------- /public/uploads/gallery/tuqa550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tuqa550.png -------------------------------------------------------------------------------- /public/uploads/gallery/tutv179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tutv179.png -------------------------------------------------------------------------------- /public/uploads/gallery/tutv25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tutv25.png -------------------------------------------------------------------------------- /public/uploads/gallery/tutv392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tutv392.png -------------------------------------------------------------------------------- /public/uploads/gallery/tutv498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tutv498.png -------------------------------------------------------------------------------- /public/uploads/gallery/tutv522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/tutv522.png -------------------------------------------------------------------------------- /public/uploads/gallery/you141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/gallery/you141.jpg -------------------------------------------------------------------------------- /public/uploads/post/km213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/km213.jpg -------------------------------------------------------------------------------- /public/uploads/post/km22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/km22.jpg -------------------------------------------------------------------------------- /public/uploads/post/km237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/km237.jpg -------------------------------------------------------------------------------- /public/uploads/post/km279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/km279.jpg -------------------------------------------------------------------------------- /public/uploads/post/km286.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/km286.jpg -------------------------------------------------------------------------------- /public/uploads/post/sharing&loving28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/sharing&loving28.png -------------------------------------------------------------------------------- /public/uploads/post/tip119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/tip119.jpg -------------------------------------------------------------------------------- /public/uploads/post/tip277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/tip277.jpg -------------------------------------------------------------------------------- /public/uploads/post/tip320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/tip320.jpg -------------------------------------------------------------------------------- /public/uploads/post/tuyendung59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/tuyendung59.png -------------------------------------------------------------------------------- /public/uploads/post/udtv21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/udtv21.png -------------------------------------------------------------------------------- /public/uploads/post/udtv247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/post/udtv247.png -------------------------------------------------------------------------------- /public/uploads/product/2021-10-29 (6)73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/2021-10-29 (6)73.png -------------------------------------------------------------------------------- /public/uploads/product/alieen184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/alieen184.png -------------------------------------------------------------------------------- /public/uploads/product/anh421.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/anh421.jpg -------------------------------------------------------------------------------- /public/uploads/product/bag14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/bag14.png -------------------------------------------------------------------------------- /public/uploads/product/bag246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/bag246.png -------------------------------------------------------------------------------- /public/uploads/product/bangtrangtri84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/bangtrangtri84.png -------------------------------------------------------------------------------- /public/uploads/product/bee151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/bee151.png -------------------------------------------------------------------------------- /public/uploads/product/caythong89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/caythong89.jpg -------------------------------------------------------------------------------- /public/uploads/product/dalat347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/dalat347.png -------------------------------------------------------------------------------- /public/uploads/product/dalat432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/dalat432.png -------------------------------------------------------------------------------- /public/uploads/product/densan193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/densan193.jpg -------------------------------------------------------------------------------- /public/uploads/product/densan293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/densan293.jpg -------------------------------------------------------------------------------- /public/uploads/product/densan324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/densan324.jpg -------------------------------------------------------------------------------- /public/uploads/product/densan46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/densan46.jpg -------------------------------------------------------------------------------- /public/uploads/product/densan541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/densan541.jpg -------------------------------------------------------------------------------- /public/uploads/product/dongho141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/dongho141.jpg -------------------------------------------------------------------------------- /public/uploads/product/dongho212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/dongho212.jpg -------------------------------------------------------------------------------- /public/uploads/product/dongho324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/dongho324.jpg -------------------------------------------------------------------------------- /public/uploads/product/fika14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/fika14.png -------------------------------------------------------------------------------- /public/uploads/product/giuonghano5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuonghano5.png -------------------------------------------------------------------------------- /public/uploads/product/giuonghano91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuonghano91.png -------------------------------------------------------------------------------- /public/uploads/product/giuongquada3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongquada3.png -------------------------------------------------------------------------------- /public/uploads/product/giuongquada30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongquada30.png -------------------------------------------------------------------------------- /public/uploads/product/giuongquada88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongquada88.png -------------------------------------------------------------------------------- /public/uploads/product/giuongsago25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongsago25.png -------------------------------------------------------------------------------- /public/uploads/product/giuongsago35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongsago35.png -------------------------------------------------------------------------------- /public/uploads/product/giuongsago99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/giuongsago99.png -------------------------------------------------------------------------------- /public/uploads/product/hano534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/hano534.png -------------------------------------------------------------------------------- /public/uploads/product/hasi125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/hasi125.jpg -------------------------------------------------------------------------------- /public/uploads/product/hiro152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/hiro152.jpg -------------------------------------------------------------------------------- /public/uploads/product/hiro223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/hiro223.jpg -------------------------------------------------------------------------------- /public/uploads/product/kebep138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/kebep138.jpg -------------------------------------------------------------------------------- /public/uploads/product/kebep266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/kebep266.jpg -------------------------------------------------------------------------------- /public/uploads/product/net155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/net155.jpg -------------------------------------------------------------------------------- /public/uploads/product/net279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/net279.jpg -------------------------------------------------------------------------------- /public/uploads/product/sao6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sao6.jpg -------------------------------------------------------------------------------- /public/uploads/product/set187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/set187.png -------------------------------------------------------------------------------- /public/uploads/product/set255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/set255.png -------------------------------------------------------------------------------- /public/uploads/product/set5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/set5.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofabang136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofabang136.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofabang283.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofabang283.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofabang373.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofabang373.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofabang419.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofabang419.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofabang531.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofabang531.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofagoc187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofagoc187.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofagoc221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofagoc221.jpg -------------------------------------------------------------------------------- /public/uploads/product/sofagoc370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/sofagoc370.jpg -------------------------------------------------------------------------------- /public/uploads/product/thongkho47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/thongkho47.jpg -------------------------------------------------------------------------------- /public/uploads/product/thungrac172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/thungrac172.jpg -------------------------------------------------------------------------------- /public/uploads/product/thungrac214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/thungrac214.jpg -------------------------------------------------------------------------------- /public/uploads/product/thungrac374.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/thungrac374.jpg -------------------------------------------------------------------------------- /public/uploads/product/tranh192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tranh192.jpg -------------------------------------------------------------------------------- /public/uploads/product/tranh269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tranh269.jpg -------------------------------------------------------------------------------- /public/uploads/product/tranh35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tranh35.jpg -------------------------------------------------------------------------------- /public/uploads/product/tuqa193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tuqa193.png -------------------------------------------------------------------------------- /public/uploads/product/tuqa219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tuqa219.jpg -------------------------------------------------------------------------------- /public/uploads/product/tuqa368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tuqa368.png -------------------------------------------------------------------------------- /public/uploads/product/tuqa456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tuqa456.png -------------------------------------------------------------------------------- /public/uploads/product/tuqa550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tuqa550.png -------------------------------------------------------------------------------- /public/uploads/product/tutv179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tutv179.png -------------------------------------------------------------------------------- /public/uploads/product/tutv25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tutv25.png -------------------------------------------------------------------------------- /public/uploads/product/tutv392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tutv392.png -------------------------------------------------------------------------------- /public/uploads/product/tutv498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tutv498.png -------------------------------------------------------------------------------- /public/uploads/product/tutv522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/tutv522.png -------------------------------------------------------------------------------- /public/uploads/product/you141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/product/you141.jpg -------------------------------------------------------------------------------- /public/uploads/slider/091216-casualfalloutifts-slider-2png18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/091216-casualfalloutifts-slider-2png18.png -------------------------------------------------------------------------------- /public/uploads/slider/091216-casualfalloutifts-slider-2png1810.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/091216-casualfalloutifts-slider-2png1810.png -------------------------------------------------------------------------------- /public/uploads/slider/2021-10-29 (6)26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/2021-10-29 (6)26.png -------------------------------------------------------------------------------- /public/uploads/slider/2021-10-29 (7)67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/2021-10-29 (7)67.png -------------------------------------------------------------------------------- /public/uploads/slider/2021-10-29 (8)18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/2021-10-29 (8)18.png -------------------------------------------------------------------------------- /public/uploads/slider/2021-10-29 (8)36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/2021-10-29 (8)36.png -------------------------------------------------------------------------------- /public/uploads/slider/alieen138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/alieen138.png -------------------------------------------------------------------------------- /public/uploads/slider/alieen1_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/alieen1_192.png -------------------------------------------------------------------------------- /public/uploads/slider/alieen1_219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/alieen1_219.png -------------------------------------------------------------------------------- /public/uploads/slider/alieen1_271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/alieen1_271.png -------------------------------------------------------------------------------- /public/uploads/slider/banner-template-concept-pet-shop_23-214843688821.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/banner-template-concept-pet-shop_23-214843688821.jpg -------------------------------------------------------------------------------- /public/uploads/slider/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/banner.gif -------------------------------------------------------------------------------- /public/uploads/slider/banner190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/banner190.jpg -------------------------------------------------------------------------------- /public/uploads/slider/banner342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/banner342.jpg -------------------------------------------------------------------------------- /public/uploads/slider/bookslider43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/bookslider43.jpg -------------------------------------------------------------------------------- /public/uploads/slider/hiro20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/hiro20.jpg -------------------------------------------------------------------------------- /public/uploads/slider/slider0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider0.png -------------------------------------------------------------------------------- /public/uploads/slider/slider043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider043.png -------------------------------------------------------------------------------- /public/uploads/slider/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider1.png -------------------------------------------------------------------------------- /public/uploads/slider/slider148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider148.png -------------------------------------------------------------------------------- /public/uploads/slider/slider149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider149.jpg -------------------------------------------------------------------------------- /public/uploads/slider/slider180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider180.png -------------------------------------------------------------------------------- /public/uploads/slider/slider18063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider18063.png -------------------------------------------------------------------------------- /public/uploads/slider/slider188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider188.jpg -------------------------------------------------------------------------------- /public/uploads/slider/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider2.png -------------------------------------------------------------------------------- /public/uploads/slider/slider244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider244.png -------------------------------------------------------------------------------- /public/uploads/slider/slider24422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider24422.png -------------------------------------------------------------------------------- /public/uploads/slider/slider275.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider275.jpg -------------------------------------------------------------------------------- /public/uploads/slider/slider318.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider318.jpg -------------------------------------------------------------------------------- /public/uploads/slider/slider347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider347.png -------------------------------------------------------------------------------- /public/uploads/slider/slider353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider353.png -------------------------------------------------------------------------------- /public/uploads/slider/slider35322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider35322.png -------------------------------------------------------------------------------- /public/uploads/slider/slider4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/slider4.png -------------------------------------------------------------------------------- /public/uploads/slider/sliderclothing64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/sliderclothing64.jpg -------------------------------------------------------------------------------- /public/uploads/slider/sliderlast50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/sliderlast50.png -------------------------------------------------------------------------------- /public/uploads/slider/sliderlast5033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/slider/sliderlast5033.png -------------------------------------------------------------------------------- /public/uploads/videos/hangle11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/videos/hangle11.jpg -------------------------------------------------------------------------------- /public/uploads/videos/khu-cam-trai-zenna879.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/videos/khu-cam-trai-zenna879.jpg -------------------------------------------------------------------------------- /public/uploads/videos/thieu-xe8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/videos/thieu-xe8.jpg -------------------------------------------------------------------------------- /public/uploads/videos/viber-image-2019-06-06-12-01-4871.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/public/uploads/videos/viber-image-2019-06-06-12-01-4871.jpg -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOG-ntp/ecommerce-laravel/f2040488fff85c0f3f3dd73e43654f4caccdc310/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /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/views/errors/500.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Server Error')) 4 | {{-- @section('code', '500') --}} 5 | @section('message', __('404 không tìm thấy')) 6 | -------------------------------------------------------------------------------- /resources/views/pages/checkout/handcash.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layout') 2 | @section('content') 3 | 4 |
5 |
6 |
7 |

Cảm ơn bạn đã đặt hàng ở chỗ chúng tôi,chúng tôi sẽ liên hệ với bạn sớm nhất

8 |
9 |
10 |
11 | 12 | @endsection -------------------------------------------------------------------------------- /resources/views/pages/send_mail.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gửi Mail Google 8 | 9 | 10 |

Mail được gửi từ: {{$name}}

11 |

Nội dung mail: {{$body}}

12 | 13 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 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 | // 17 | ]); 18 | --------------------------------------------------------------------------------