├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Address.php ├── Category.php ├── Console │ └── Kernel.php ├── Country.php ├── Exceptions │ └── Handler.php ├── Filters │ ├── Filters.php │ └── ProductFilters.php ├── GeneralSetting.php ├── Helpers │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── API │ │ │ └── AddressApiController.php │ │ ├── Admin │ │ │ ├── CategoryController.php │ │ │ ├── DashboardController.php │ │ │ ├── GeneralSettingsController.php │ │ │ └── LocalizationSettingsController.php │ │ ├── Auth │ │ │ ├── ChangePasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── Frontend │ │ │ ├── AccountController.php │ │ │ ├── AddressController.php │ │ │ ├── CartController.php │ │ │ ├── HomeController.php │ │ │ ├── ImageController.php │ │ │ ├── OrderController.php │ │ │ ├── ProductController.php │ │ │ └── ShopController.php │ │ └── HomeController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckUserRoleIsAdmin.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Image.php ├── LocalizationSetting.php ├── Order.php ├── OrderItem.php ├── Product.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Role.php ├── RoleUser.php ├── Shop.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── adminlte.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cart.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AddressFactory.php │ ├── CategoryFactory.php │ ├── CountryFactory.php │ ├── GeneralSettingFactory.php │ ├── ImageFactory.php │ ├── LocalizationSettingFactory.php │ ├── OrderFactory.php │ ├── OrderItemFactory.php │ ├── ProductFactory.php │ ├── Region1Factory.php │ ├── Region2Factory.php │ ├── Region3Factory.php │ ├── RoleFactory.php │ ├── RoleUserFactory.php │ ├── ShopFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_08_30_143041_create_products_table.php │ ├── 2018_08_30_144316_create_shops_table.php │ ├── 2018_08_30_152106_create_categories_table.php │ ├── 2018_09_10_032716_create_images_table.php │ ├── 2018_09_15_010716_create_addresses_table.php │ ├── 2018_09_17_111127_create_roles_table.php │ ├── 2018_09_17_111825_create_role_user_table.php │ ├── 2018_09_22_021222_create_general_settings_table.php │ ├── 2018_10_03_105344_create_countries_table.php │ ├── 2018_10_08_113434_create_localization_settings_table.php │ ├── 2018_10_18_124924_create_shoppingcart_table.php │ ├── 2018_10_31_112322_create_orders_table.php │ └── 2018_10_31_114141_create_order_item_table.php └── seeds │ ├── CategorySeeder.php │ ├── DatabaseSeeder.php │ ├── ImageSeeder.php │ ├── ProductSeeder.php │ ├── SettingSeeder.php │ └── UserSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ ├── fileinput-rtl.css │ ├── fileinput-rtl.min.css │ ├── fileinput.css │ └── fileinput.min.css ├── favicon.ico ├── img │ ├── loading-sm.gif │ └── loading.gif ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── vendor │ └── adminlte │ ├── css │ └── auth.css │ ├── dist │ ├── css │ │ ├── AdminLTE.css │ │ ├── AdminLTE.min.css │ │ └── skins │ │ │ ├── skin-black-light.css │ │ │ ├── skin-black-light.min.css │ │ │ ├── skin-black.css │ │ │ ├── skin-black.min.css │ │ │ ├── skin-blue-light.css │ │ │ ├── skin-blue-light.min.css │ │ │ ├── skin-blue.css │ │ │ ├── skin-blue.min.css │ │ │ ├── skin-green-light.css │ │ │ ├── skin-green-light.min.css │ │ │ ├── skin-green.css │ │ │ ├── skin-green.min.css │ │ │ ├── skin-purple-light.css │ │ │ ├── skin-purple-light.min.css │ │ │ ├── skin-purple.css │ │ │ ├── skin-purple.min.css │ │ │ ├── skin-red-light.css │ │ │ ├── skin-red-light.min.css │ │ │ ├── skin-red.css │ │ │ ├── skin-red.min.css │ │ │ ├── skin-yellow-light.css │ │ │ ├── skin-yellow-light.min.css │ │ │ ├── skin-yellow.css │ │ │ └── skin-yellow.min.css │ └── js │ │ ├── adminlte.js │ │ └── adminlte.min.js │ ├── plugins │ └── iCheck │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ └── square │ │ ├── blue.css │ │ ├── blue.png │ │ └── blue@2x.png │ └── vendor │ ├── Ionicons │ ├── css │ │ ├── ionicons.css │ │ └── ionicons.min.css │ └── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── bootstrap │ └── dist │ │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ └── jquery │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ └── jquery.slimscroll.min.js ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ ├── AddressModal.vue │ │ │ ├── AddressPicker.vue │ │ │ ├── AddressView.vue │ │ │ ├── FileUpload.vue │ │ │ ├── FileUploadMultiple.vue │ │ │ └── Flash.vue │ └── sass │ │ ├── _custom.scss │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── id.json └── views │ ├── admin │ ├── category │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── general │ │ └── index.blade.php │ └── localization │ │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── component │ ├── footer.blade.php │ ├── listcontrol.blade.php │ ├── product_thumbnail.blade.php │ └── productcarousel.blade.php │ ├── frontend │ ├── account.blade.php │ ├── address │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── cart │ │ ├── checkout.blade.php │ │ └── index.blade.php │ ├── category │ │ └── show.blade.php │ ├── home.blade.php │ ├── order │ │ ├── index.blade.php │ │ ├── sales.blade.php │ │ └── show.blade.php │ ├── product │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── my.blade.php │ │ └── show.blade.php │ └── shop │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── show.blade.php │ ├── layouts │ ├── app.blade.php │ ├── product.blade.php │ └── setting.blade.php │ └── vendor │ ├── adminlte │ ├── login.blade.php │ ├── master.blade.php │ ├── page.blade.php │ ├── partials │ │ ├── menu-item-top-nav.blade.php │ │ └── menu-item.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ └── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ └── simple-default.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── AddressTest.php │ ├── CartTest.php │ ├── CategoryTest.php │ ├── GeneralSettingTest.php │ ├── LocalizationSettingTest.php │ ├── OrderTest.php │ ├── ProductTest.php │ ├── ShopTest.php │ └── UserTest.php ├── TestCase.php ├── Unit │ ├── AddressTest.php │ ├── AdminTest.php │ ├── ImageTest.php │ ├── OrderTest.php │ └── RoleTest.php └── Utilities │ └── functions.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # L-Commerce 2 | Laravel Multivendor Marketplace Script 3 | -------------------------------------------------------------------------------- /app/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Address.php -------------------------------------------------------------------------------- /app/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Category.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Country.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filters/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Filters/Filters.php -------------------------------------------------------------------------------- /app/Filters/ProductFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Filters/ProductFilters.php -------------------------------------------------------------------------------- /app/GeneralSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/GeneralSetting.php -------------------------------------------------------------------------------- /app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Helpers/helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/AddressApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/API/AddressApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/GeneralSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Admin/GeneralSettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LocalizationSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Admin/LocalizationSettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ChangePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Auth/ChangePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/AccountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/AddressController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/CartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/CartController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/ImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/ImageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/ShopController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/Frontend/ShopController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckUserRoleIsAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/CheckUserRoleIsAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Image.php -------------------------------------------------------------------------------- /app/LocalizationSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/LocalizationSetting.php -------------------------------------------------------------------------------- /app/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Order.php -------------------------------------------------------------------------------- /app/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/OrderItem.php -------------------------------------------------------------------------------- /app/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Product.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Role.php -------------------------------------------------------------------------------- /app/RoleUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/RoleUser.php -------------------------------------------------------------------------------- /app/Shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/Shop.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/composer.lock -------------------------------------------------------------------------------- /config/adminlte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/adminlte.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/cart.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/AddressFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/AddressFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/CountryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/CountryFactory.php -------------------------------------------------------------------------------- /database/factories/GeneralSettingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/GeneralSettingFactory.php -------------------------------------------------------------------------------- /database/factories/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/ImageFactory.php -------------------------------------------------------------------------------- /database/factories/LocalizationSettingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/LocalizationSettingFactory.php -------------------------------------------------------------------------------- /database/factories/OrderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/OrderFactory.php -------------------------------------------------------------------------------- /database/factories/OrderItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/OrderItemFactory.php -------------------------------------------------------------------------------- /database/factories/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/ProductFactory.php -------------------------------------------------------------------------------- /database/factories/Region1Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/Region1Factory.php -------------------------------------------------------------------------------- /database/factories/Region2Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/Region2Factory.php -------------------------------------------------------------------------------- /database/factories/Region3Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/Region3Factory.php -------------------------------------------------------------------------------- /database/factories/RoleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/RoleFactory.php -------------------------------------------------------------------------------- /database/factories/RoleUserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/RoleUserFactory.php -------------------------------------------------------------------------------- /database/factories/ShopFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/ShopFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/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/ediasep/L-Commerce/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_30_143041_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_08_30_143041_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_30_144316_create_shops_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_08_30_144316_create_shops_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_30_152106_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_08_30_152106_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_10_032716_create_images_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_09_10_032716_create_images_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_15_010716_create_addresses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_09_15_010716_create_addresses_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_17_111127_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_09_17_111127_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_17_111825_create_role_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_09_17_111825_create_role_user_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_22_021222_create_general_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_09_22_021222_create_general_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_03_105344_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_10_03_105344_create_countries_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_08_113434_create_localization_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_10_08_113434_create_localization_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_18_124924_create_shoppingcart_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_10_18_124924_create_shoppingcart_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_31_112322_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_10_31_112322_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_31_114141_create_order_item_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/migrations/2018_10_31_114141_create_order_item_table.php -------------------------------------------------------------------------------- /database/seeds/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/ImageSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/ImageSeeder.php -------------------------------------------------------------------------------- /database/seeds/ProductSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/ProductSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/SettingSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/database/seeds/UserSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/fileinput-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/css/fileinput-rtl.css -------------------------------------------------------------------------------- /public/css/fileinput-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/css/fileinput-rtl.min.css -------------------------------------------------------------------------------- /public/css/fileinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/css/fileinput.css -------------------------------------------------------------------------------- /public/css/fileinput.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/css/fileinput.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/img/loading-sm.gif -------------------------------------------------------------------------------- /public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/img/loading.gif -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/adminlte/css/auth.css: -------------------------------------------------------------------------------- 1 | .auth-links { 2 | margin-top: 10px; 3 | } -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/AdminLTE.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-black-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-black-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-black-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-black-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-black.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-black.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-blue-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-blue-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-blue-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-blue-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-blue.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-blue.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-green-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-green-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-green-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-green-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-green.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-green.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-purple-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-purple-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-purple-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-purple-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-purple.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-purple.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-red-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-red-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-red-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-red-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-red.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-yellow-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-yellow-light.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-yellow-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-yellow-light.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-yellow.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/css/skins/skin-yellow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/css/skins/skin-yellow.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/js/adminlte.js -------------------------------------------------------------------------------- /public/vendor/adminlte/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /public/vendor/adminlte/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /public/vendor/adminlte/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /public/vendor/adminlte/plugins/iCheck/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/plugins/iCheck/square/blue.css -------------------------------------------------------------------------------- /public/vendor/adminlte/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /public/vendor/adminlte/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/css/ionicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/css/ionicons.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/css/ionicons.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.svg -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/Ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/jquery/dist/jquery.js -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /public/vendor/adminlte/vendor/jquery/dist/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/public/vendor/adminlte/vendor/jquery/dist/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/AddressModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/AddressModal.vue -------------------------------------------------------------------------------- /resources/assets/js/components/AddressPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/AddressPicker.vue -------------------------------------------------------------------------------- /resources/assets/js/components/AddressView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/AddressView.vue -------------------------------------------------------------------------------- /resources/assets/js/components/FileUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/FileUpload.vue -------------------------------------------------------------------------------- /resources/assets/js/components/FileUploadMultiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/FileUploadMultiple.vue -------------------------------------------------------------------------------- /resources/assets/js/components/Flash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/js/components/Flash.vue -------------------------------------------------------------------------------- /resources/assets/sass/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/sass/_custom.scss -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/lang/id.json -------------------------------------------------------------------------------- /resources/views/admin/category/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/category/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/category/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/category/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/category/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/category/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/general/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/general/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/localization/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/admin/localization/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- 1 | @extends('adminlte::login') -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- 1 | @extends('adminlte::passwords.email') -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- 1 | @extends('adminlte::passwords.reset') -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- 1 | @extends('adminlte::register') -------------------------------------------------------------------------------- /resources/views/component/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/component/footer.blade.php -------------------------------------------------------------------------------- /resources/views/component/listcontrol.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/component/listcontrol.blade.php -------------------------------------------------------------------------------- /resources/views/component/product_thumbnail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/component/product_thumbnail.blade.php -------------------------------------------------------------------------------- /resources/views/component/productcarousel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/component/productcarousel.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/account.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/address/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/address/create.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/address/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/address/edit.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/address/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/address/index.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/address/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/address/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/cart/checkout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/cart/checkout.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/cart/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/cart/index.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/category/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/category/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/home.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/order/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/order/index.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/order/sales.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/order/sales.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/order/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/order/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/product/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/product/create.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/product/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/product/edit.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/product/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/product/index.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/product/my.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/product/my.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/product/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/product/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/shop/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/shop/create.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/shop/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/shop/edit.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/shop/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/frontend/shop/show.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/layouts/product.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/setting.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/layouts/setting.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/login.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/master.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/page.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/partials/menu-item-top-nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/partials/menu-item-top-nav.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/partials/menu-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/partials/menu-item.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/adminlte/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/adminlte/register.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/pagination/semantic-ui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/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/ediasep/L-Commerce/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.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/ediasep/L-Commerce/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/AddressTest.php -------------------------------------------------------------------------------- /tests/Feature/CartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/CartTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/CategoryTest.php -------------------------------------------------------------------------------- /tests/Feature/GeneralSettingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/GeneralSettingTest.php -------------------------------------------------------------------------------- /tests/Feature/LocalizationSettingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/LocalizationSettingTest.php -------------------------------------------------------------------------------- /tests/Feature/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/OrderTest.php -------------------------------------------------------------------------------- /tests/Feature/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/ProductTest.php -------------------------------------------------------------------------------- /tests/Feature/ShopTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/ShopTest.php -------------------------------------------------------------------------------- /tests/Feature/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Feature/UserTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Unit/AddressTest.php -------------------------------------------------------------------------------- /tests/Unit/AdminTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Unit/AdminTest.php -------------------------------------------------------------------------------- /tests/Unit/ImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Unit/ImageTest.php -------------------------------------------------------------------------------- /tests/Unit/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Unit/OrderTest.php -------------------------------------------------------------------------------- /tests/Unit/RoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Unit/RoleTest.php -------------------------------------------------------------------------------- /tests/Utilities/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/tests/Utilities/functions.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ediasep/L-Commerce/HEAD/yarn.lock --------------------------------------------------------------------------------