├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── app ├── Console │ └── Kernel.php ├── Contracts │ ├── AttributeContract.php │ ├── BaseContract.php │ ├── BrandContract.php │ ├── CategoryContract.php │ ├── OrderContract.php │ └── ProductContract.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AttributeController.php │ │ │ ├── AttributeValueController.php │ │ │ ├── BrandController.php │ │ │ ├── CategoryController.php │ │ │ ├── LoginController.php │ │ │ ├── OrderController.php │ │ │ ├── ProductAttributeController.php │ │ │ ├── ProductController.php │ │ │ ├── ProductImageController.php │ │ │ └── SettingController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BaseController.php │ │ ├── Controller.php │ │ └── Site │ │ │ ├── AccountController.php │ │ │ ├── CartController.php │ │ │ ├── CategoryController.php │ │ │ ├── CheckoutController.php │ │ │ └── ProductController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ └── StoreProductFormRequest.php ├── Models │ ├── Admin.php │ ├── Attribute.php │ ├── AttributeValue.php │ ├── Brand.php │ ├── Category.php │ ├── Order.php │ ├── OrderItem.php │ ├── Product.php │ ├── ProductAttribute.php │ ├── ProductImage.php │ ├── Setting.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RepositoryServiceProvider.php │ ├── RouteServiceProvider.php │ ├── SettingServiceProvider.php │ └── ViewComposerServiceProvider.php ├── Repositories │ ├── AttributeRepository.php │ ├── BaseRepository.php │ ├── BrandRepository.php │ ├── CategoryRepository.php │ ├── OrderRepository.php │ └── ProductRepository.php ├── Services │ └── PayPalService.php └── Traits │ ├── FlashMessages.php │ └── UploadAble.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_05_16_084727_create_admins_table.php │ ├── 2019_05_27_114658_create_settings_table.php │ ├── 2019_06_04_110601_create_categories_table.php │ ├── 2019_06_20_083625_create_attributes_table.php │ ├── 2019_06_20_085828_create_attribute_values_table.php │ ├── 2019_07_17_083825_create_brands_table.php │ ├── 2019_07_24_083500_create_products_table.php │ ├── 2019_07_24_083527_create_product_images_table.php │ ├── 2019_07_24_090328_create_product_attributes_table.php │ ├── 2019_07_24_090552_create_product_categories_table.php │ ├── 2019_07_24_092222_create_attribute_value_product_attribute_table.php │ ├── 2019_08_12_094451_alter_product_attributes_table.php │ ├── 2019_08_12_095126_drop_attribute_value_product_attribute_table.php │ ├── 2019_09_11_150147_create_orders_table.php │ └── 2019_09_11_150205_create_order_items_table.php └── seeds │ ├── AdminsTableSeeder.php │ ├── AttributeValuesTableSeeder.php │ ├── AttributesTableSeeder.php │ ├── CategoriesTableSeeder.php │ ├── DatabaseSeeder.php │ └── SettingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── readme.md ├── resources ├── backend │ ├── css │ │ ├── font-awesome │ │ │ └── 4.7.0 │ │ │ │ └── css │ │ │ │ └── font-awesome.min.css │ │ └── main.css │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.2.1.min.js │ │ ├── main.js │ │ ├── plugins │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-notify.min.js │ │ ├── chart.js │ │ ├── dataTables.bootstrap.min.js │ │ ├── dropzone │ │ │ └── dist │ │ │ │ └── min │ │ │ │ ├── dropzone.js │ │ │ │ ├── dropzone.min.css │ │ │ │ └── dropzone.min.js │ │ ├── fullcalendar.min.js │ │ ├── jquery-ui.custom.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.vmap.min.js │ │ ├── jquery.vmap.sampledata.js │ │ ├── jquery.vmap.world.js │ │ ├── moment.min.js │ │ ├── pace.min.js │ │ ├── select2.min.js │ │ └── sweetalert.min.js │ │ └── popper.min.js ├── frontend │ ├── css │ │ ├── bootstrap.css │ │ ├── responsive.css │ │ └── ui.css │ ├── fonts │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── fa-brands.css │ │ │ │ ├── fa-brands.min.css │ │ │ │ ├── fa-regular.css │ │ │ │ ├── fa-regular.min.css │ │ │ │ ├── fa-solid.css │ │ │ │ ├── fa-solid.min.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ └── fontawesome.min.css │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── fa-brands.scss │ │ │ │ ├── fa-regular.scss │ │ │ │ ├── fa-solid.scss │ │ │ │ └── fontawesome.scss │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── material-icons │ │ │ ├── MaterialIcons-Regular.eot │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ └── material-icons.css │ │ └── roboto │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── font.css │ ├── images │ │ ├── Thumbs.db │ │ ├── apple-touch-icon.png │ │ ├── avatars │ │ │ ├── avatar1.jpg │ │ │ ├── avatar2.jpg │ │ │ └── avatar3.jpg │ │ ├── banners │ │ │ ├── banner-request.jpg │ │ │ ├── bg-cpu.jpg │ │ │ ├── bg-pattern.svg │ │ │ ├── slide1.jpg │ │ │ ├── slide2.jpg │ │ │ └── slide3.jpg │ │ ├── brand.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── flag-in.png │ │ │ ├── flag-kr.png │ │ │ ├── flag-tr.png │ │ │ ├── flag-usa.png │ │ │ ├── flag-vt.png │ │ │ ├── pay-american-ex.png │ │ │ ├── pay-bank.png │ │ │ ├── pay-mastercard.png │ │ │ ├── pay-visa-el.png │ │ │ ├── pay-visa.png │ │ │ ├── rating-2.png │ │ │ ├── rating-3.png │ │ │ ├── rating-4.png │ │ │ └── rating-5.png │ │ ├── items │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── comp.png │ │ │ ├── item-sm.jpg │ │ │ └── item-sm.png │ │ ├── logo-dark.png │ │ ├── logo-white.png │ │ ├── logo.png │ │ ├── logos │ │ │ ├── logo-alibaba.png │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── logo4.png │ │ │ └── logo5.png │ │ └── posts │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── js │ │ ├── bootstrap.bundle.min.js │ │ ├── jquery-2.0.0.min.js │ │ └── script.js │ └── plugins │ │ ├── fancybox │ │ ├── fancybox.min.css │ │ ├── fancybox.min.js │ │ └── index.html │ │ ├── owlcarousel │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ │ ├── prism │ │ ├── prism.css │ │ └── prism.js │ │ └── slickslider │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick.css │ │ ├── slick.js │ │ └── slick.min.js ├── js │ ├── app.js │ ├── components │ │ ├── AttributeValues.vue │ │ ├── ExampleComponent.vue │ │ └── ProductAttributes.vue │ └── site.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── app.blade.php │ ├── attributes │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── auth │ │ └── login.blade.php │ ├── brands │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── orders │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── partials │ │ ├── flash.blade.php │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ ├── products │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── settings │ │ ├── includes │ │ ├── analytics.blade.php │ │ ├── footer_seo.blade.php │ │ ├── general.blade.php │ │ ├── logo.blade.php │ │ ├── payments.blade.php │ │ └── social_links.blade.php │ │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ └── site │ ├── app.blade.php │ ├── pages │ ├── account │ │ └── orders.blade.php │ ├── cart.blade.php │ ├── category.blade.php │ ├── checkout.blade.php │ ├── homepage.blade.php │ ├── product.blade.php │ └── success.blade.php │ └── partials │ ├── footer.blade.php │ ├── header.blade.php │ ├── nav.blade.php │ ├── scripts.blade.php │ └── styles.blade.php ├── routes ├── admin.php ├── 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 └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/.gitignore -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Contracts/AttributeContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/AttributeContract.php -------------------------------------------------------------------------------- /app/Contracts/BaseContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/BaseContract.php -------------------------------------------------------------------------------- /app/Contracts/BrandContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/BrandContract.php -------------------------------------------------------------------------------- /app/Contracts/CategoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/CategoryContract.php -------------------------------------------------------------------------------- /app/Contracts/OrderContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/OrderContract.php -------------------------------------------------------------------------------- /app/Contracts/ProductContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Contracts/ProductContract.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AttributeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/AttributeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AttributeValueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/AttributeValueController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/BrandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/BrandController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ProductAttributeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/ProductAttributeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ProductImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/ProductImageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Admin/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Site/AccountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/CartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Site/CartController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Site/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Site/CheckoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Controllers/Site/ProductController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreProductFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Http/Requests/StoreProductFormRequest.php -------------------------------------------------------------------------------- /app/Models/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Admin.php -------------------------------------------------------------------------------- /app/Models/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Attribute.php -------------------------------------------------------------------------------- /app/Models/AttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/AttributeValue.php -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Brand.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/OrderItem.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/ProductAttribute.php -------------------------------------------------------------------------------- /app/Models/ProductImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/ProductImage.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SettingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/SettingServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Providers/ViewComposerServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/AttributeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/AttributeRepository.php -------------------------------------------------------------------------------- /app/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/BrandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/BrandRepository.php -------------------------------------------------------------------------------- /app/Repositories/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/CategoryRepository.php -------------------------------------------------------------------------------- /app/Repositories/OrderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/OrderRepository.php -------------------------------------------------------------------------------- /app/Repositories/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Repositories/ProductRepository.php -------------------------------------------------------------------------------- /app/Services/PayPalService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Services/PayPalService.php -------------------------------------------------------------------------------- /app/Traits/FlashMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Traits/FlashMessages.php -------------------------------------------------------------------------------- /app/Traits/UploadAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/app/Traits/UploadAble.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_16_084727_create_admins_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_05_16_084727_create_admins_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_27_114658_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_05_27_114658_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2019_06_04_110601_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_06_04_110601_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2019_06_20_083625_create_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_06_20_083625_create_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2019_06_20_085828_create_attribute_values_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_06_20_085828_create_attribute_values_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_17_083825_create_brands_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_17_083825_create_brands_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_24_083500_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_24_083500_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_24_083527_create_product_images_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_24_083527_create_product_images_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_24_090328_create_product_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_24_090328_create_product_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_24_090552_create_product_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_24_090552_create_product_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_24_092222_create_attribute_value_product_attribute_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_07_24_092222_create_attribute_value_product_attribute_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_12_094451_alter_product_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_08_12_094451_alter_product_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_12_095126_drop_attribute_value_product_attribute_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_08_12_095126_drop_attribute_value_product_attribute_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_11_150147_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_09_11_150147_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_11_150205_create_order_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/migrations/2019_09_11_150205_create_order_items_table.php -------------------------------------------------------------------------------- /database/seeds/AdminsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/AdminsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/AttributeValuesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/AttributeValuesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/AttributesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/AttributesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CategoriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/CategoriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/database/seeds/SettingsTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/readme.md -------------------------------------------------------------------------------- /resources/backend/css/font-awesome/4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/css/font-awesome/4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /resources/backend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/css/main.css -------------------------------------------------------------------------------- /resources/backend/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/bootstrap.min.js -------------------------------------------------------------------------------- /resources/backend/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /resources/backend/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/main.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/bootstrap-notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/bootstrap-notify.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/chart.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/dropzone/dist/min/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/dropzone/dist/min/dropzone.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/dropzone/dist/min/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/dropzone/dist/min/dropzone.min.css -------------------------------------------------------------------------------- /resources/backend/js/plugins/dropzone/dist/min/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/dropzone/dist/min/dropzone.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/fullcalendar.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/jquery.dataTables.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/jquery.vmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/jquery.vmap.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/jquery.vmap.sampledata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/jquery.vmap.sampledata.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/jquery.vmap.world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/jquery.vmap.world.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/moment.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/pace.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/select2.min.js -------------------------------------------------------------------------------- /resources/backend/js/plugins/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/plugins/sweetalert.min.js -------------------------------------------------------------------------------- /resources/backend/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/backend/js/popper.min.js -------------------------------------------------------------------------------- /resources/frontend/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/css/bootstrap.css -------------------------------------------------------------------------------- /resources/frontend/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/css/responsive.css -------------------------------------------------------------------------------- /resources/frontend/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/css/ui.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-brands.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-brands.min.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-regular.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-regular.min.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-solid.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fa-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fa-solid.min.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fontawesome-all.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_screen-reader.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/fa-brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/fa-brands.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/fa-regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/fa-regular.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/fa-solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/fa-solid.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/scss/fontawesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/scss/fontawesome.scss -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /resources/frontend/fonts/material-icons/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/material-icons/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /resources/frontend/fonts/material-icons/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/material-icons/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/material-icons/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/material-icons/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /resources/frontend/fonts/material-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/material-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /resources/frontend/fonts/material-icons/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/material-icons/material-icons.css -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /resources/frontend/fonts/roboto/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/fonts/roboto/font.css -------------------------------------------------------------------------------- /resources/frontend/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/Thumbs.db -------------------------------------------------------------------------------- /resources/frontend/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/apple-touch-icon.png -------------------------------------------------------------------------------- /resources/frontend/images/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/avatars/avatar1.jpg -------------------------------------------------------------------------------- /resources/frontend/images/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/avatars/avatar2.jpg -------------------------------------------------------------------------------- /resources/frontend/images/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/avatars/avatar3.jpg -------------------------------------------------------------------------------- /resources/frontend/images/banners/banner-request.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/banner-request.jpg -------------------------------------------------------------------------------- /resources/frontend/images/banners/bg-cpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/bg-cpu.jpg -------------------------------------------------------------------------------- /resources/frontend/images/banners/bg-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/bg-pattern.svg -------------------------------------------------------------------------------- /resources/frontend/images/banners/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/slide1.jpg -------------------------------------------------------------------------------- /resources/frontend/images/banners/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/slide2.jpg -------------------------------------------------------------------------------- /resources/frontend/images/banners/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/banners/slide3.jpg -------------------------------------------------------------------------------- /resources/frontend/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/brand.png -------------------------------------------------------------------------------- /resources/frontend/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/favicon-32x32.png -------------------------------------------------------------------------------- /resources/frontend/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/favicon.ico -------------------------------------------------------------------------------- /resources/frontend/images/icons/flag-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/flag-in.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/flag-kr.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/flag-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/flag-tr.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/flag-usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/flag-usa.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/flag-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/flag-vt.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/pay-american-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/pay-american-ex.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/pay-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/pay-bank.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/pay-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/pay-mastercard.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/pay-visa-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/pay-visa-el.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/pay-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/pay-visa.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/rating-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/rating-2.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/rating-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/rating-3.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/rating-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/rating-4.png -------------------------------------------------------------------------------- /resources/frontend/images/icons/rating-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/icons/rating-5.png -------------------------------------------------------------------------------- /resources/frontend/images/items/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/1.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/2.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/3.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/4.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/5.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/6.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/7.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/comp.png -------------------------------------------------------------------------------- /resources/frontend/images/items/item-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/item-sm.jpg -------------------------------------------------------------------------------- /resources/frontend/images/items/item-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/items/item-sm.png -------------------------------------------------------------------------------- /resources/frontend/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logo-dark.png -------------------------------------------------------------------------------- /resources/frontend/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logo-white.png -------------------------------------------------------------------------------- /resources/frontend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logo.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo-alibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo-alibaba.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo1.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo2.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo3.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo4.png -------------------------------------------------------------------------------- /resources/frontend/images/logos/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/logos/logo5.png -------------------------------------------------------------------------------- /resources/frontend/images/posts/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/1.jpg -------------------------------------------------------------------------------- /resources/frontend/images/posts/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/2.jpg -------------------------------------------------------------------------------- /resources/frontend/images/posts/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/3.jpg -------------------------------------------------------------------------------- /resources/frontend/images/posts/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/4.jpg -------------------------------------------------------------------------------- /resources/frontend/images/posts/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/5.jpg -------------------------------------------------------------------------------- /resources/frontend/images/posts/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/images/posts/6.jpg -------------------------------------------------------------------------------- /resources/frontend/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /resources/frontend/js/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/js/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /resources/frontend/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/js/script.js -------------------------------------------------------------------------------- /resources/frontend/plugins/fancybox/fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/fancybox/fancybox.min.css -------------------------------------------------------------------------------- /resources/frontend/plugins/fancybox/fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/fancybox/fancybox.min.js -------------------------------------------------------------------------------- /resources/frontend/plugins/fancybox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/fancybox/index.html -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/owl.carousel.js -------------------------------------------------------------------------------- /resources/frontend/plugins/owlcarousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/owlcarousel/owl.carousel.min.js -------------------------------------------------------------------------------- /resources/frontend/plugins/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/prism/prism.css -------------------------------------------------------------------------------- /resources/frontend/plugins/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/prism/prism.js -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/ajax-loader.gif -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/fonts/slick.eot -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/fonts/slick.svg -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/fonts/slick.ttf -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/fonts/slick.woff -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/slick-theme.css -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/slick.css -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/slick.js -------------------------------------------------------------------------------- /resources/frontend/plugins/slickslider/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/frontend/plugins/slickslider/slick.min.js -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/components/AttributeValues.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/js/components/AttributeValues.vue -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/components/ProductAttributes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/js/components/ProductAttributes.vue -------------------------------------------------------------------------------- /resources/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/js/site.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/admin/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/app.blade.php -------------------------------------------------------------------------------- /resources/views/admin/attributes/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/attributes/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/attributes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/attributes/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/attributes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/attributes/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/admin/brands/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/brands/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/brands/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/brands/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/brands/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/brands/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/categories/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/categories/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/orders/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/orders/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/orders/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/orders/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/partials/flash.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/partials/header.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/partials/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/products/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/products/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/products/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/products/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/products/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/products/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/analytics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/analytics.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/footer_seo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/footer_seo.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/general.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/general.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/logo.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/payments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/payments.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/includes/social_links.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/includes/social_links.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/admin/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/site/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/app.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/account/orders.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/account/orders.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/cart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/cart.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/category.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/category.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/checkout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/checkout.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/homepage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/homepage.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/product.blade.php -------------------------------------------------------------------------------- /resources/views/site/pages/success.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/pages/success.blade.php -------------------------------------------------------------------------------- /resources/views/site/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/site/partials/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/partials/header.blade.php -------------------------------------------------------------------------------- /resources/views/site/partials/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/partials/nav.blade.php -------------------------------------------------------------------------------- /resources/views/site/partials/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/partials/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/site/partials/styles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/resources/views/site/partials/styles.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaraShout/laravel-ecommerce-application/HEAD/webpack.mix.js --------------------------------------------------------------------------------