├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ ├── Commands │ │ └── General │ │ │ ├── Enumeration │ │ │ └── FreshAndSeedCommandEnumeration.php │ │ │ └── FreshAndSeederCommand.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ ├── AutoloadHelpers │ │ └── functions.php │ ├── DatatableHelper.php │ ├── EnumerationHelper.php │ └── FileHelper.php ├── Http │ ├── Controller.php │ ├── Enumeration │ │ ├── RouteGroupNameEnumeration.php │ │ ├── RouteGroupPathEnumeration.php │ │ └── RouteGroupThrottleEnumeration.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Struct │ │ ├── Main │ │ └── Setting │ │ │ ├── Controller │ │ │ └── SettingController.php │ │ │ ├── Enumeration │ │ │ └── SettingMimeTypeEnumeration.php │ │ │ ├── Request │ │ │ └── SettingUpdateRequest.php │ │ │ └── Service │ │ │ └── SettingService.php │ │ ├── Media │ │ ├── Contract │ │ │ └── MediaInterface.php │ │ ├── Controller │ │ │ └── MediaController.php │ │ ├── Enumeration │ │ │ └── MediaPathEnumeration.php │ │ ├── Model │ │ │ └── Media.php │ │ ├── Relation │ │ │ └── MediaPolymorphic │ │ │ │ ├── Contract │ │ │ │ └── MediaPolymorphicInterface.php │ │ │ │ ├── Model │ │ │ │ └── MediaPolymorphic.php │ │ │ │ ├── Repository │ │ │ │ └── MediaPolymorphicRepository.php │ │ │ │ └── Trait │ │ │ │ └── MediaPolymorphicTrait.php │ │ ├── Repository │ │ │ └── MediaRepository.php │ │ ├── Request │ │ │ ├── MediaDestroyRequest.php │ │ │ ├── MediaIndexRequest.php │ │ │ ├── MediaRestoreAndForceDeleteRequest.php │ │ │ └── MediaStoreRequest.php │ │ ├── ResourceCollection │ │ │ └── MediaResourceCollection.php │ │ ├── Service │ │ │ └── MediaService.php │ │ └── Trait │ │ │ └── MediaTrait.php │ │ ├── Product │ │ ├── Collection │ │ │ └── ProductIndexCollection.php │ │ ├── Contract │ │ │ └── ProductInterface.php │ │ ├── Controller │ │ │ └── ProductController.php │ │ ├── Enumeration │ │ │ └── ProductStatusEnumeration.php │ │ ├── Model │ │ │ └── Product.php │ │ ├── Relation │ │ │ ├── Attribute │ │ │ │ ├── Collection │ │ │ │ │ └── AttributeIndexCollection.php │ │ │ │ ├── Contract │ │ │ │ │ └── AttributeInterface.php │ │ │ │ ├── Controller │ │ │ │ │ └── AttributeController.php │ │ │ │ ├── Model │ │ │ │ │ └── Attribute.php │ │ │ │ ├── Relation │ │ │ │ │ └── AttributeValue │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ └── AttributeValueIndexCollection.php │ │ │ │ │ │ ├── Contract │ │ │ │ │ │ └── AttributeValueInterface.php │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── AttributeValueController.php │ │ │ │ │ │ ├── Model │ │ │ │ │ │ └── AttributeValue.php │ │ │ │ │ │ ├── Repository │ │ │ │ │ │ └── AttributeValueRepository.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ ├── AttributeValueIndexRequest.php │ │ │ │ │ │ ├── AttributeValueRestoreAndForceDeleteRequest.php │ │ │ │ │ │ ├── AttributeValueStoreRequest.php │ │ │ │ │ │ └── AttributeValueUpdateRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ └── AttributeValueIndexResource.php │ │ │ │ │ │ ├── ResourceCollection │ │ │ │ │ │ ├── AttributeValueEditResourceCollection.php │ │ │ │ │ │ └── AttributeValueResourceCollection.php │ │ │ │ │ │ └── Service │ │ │ │ │ │ └── AttributeValueService.php │ │ │ │ ├── Repository │ │ │ │ │ └── AttributeRepository.php │ │ │ │ ├── Request │ │ │ │ │ ├── AttributeIndexRequest.php │ │ │ │ │ ├── AttributeRestoreAndForceDeleteRequest.php │ │ │ │ │ ├── AttributeStoreRequest.php │ │ │ │ │ └── AttributeUpdateRequest.php │ │ │ │ ├── Resource │ │ │ │ │ └── AttributeIndexResource.php │ │ │ │ ├── ResourceCollection │ │ │ │ │ ├── AttributeEditResourceCollection.php │ │ │ │ │ ├── AttributeRelationResourceCollection.php │ │ │ │ │ └── AttributeResourceCollection.php │ │ │ │ └── Service │ │ │ │ │ └── AttributeService.php │ │ │ ├── Brand │ │ │ │ ├── Collection │ │ │ │ │ └── BrandIndexCollection.php │ │ │ │ ├── Contract │ │ │ │ │ └── BrandInterface.php │ │ │ │ ├── Controller │ │ │ │ │ └── BrandController.php │ │ │ │ ├── Model │ │ │ │ │ └── Brand.php │ │ │ │ ├── Repository │ │ │ │ │ └── BrandRepository.php │ │ │ │ ├── Request │ │ │ │ │ ├── BrandIndexRequest.php │ │ │ │ │ ├── BrandRestoreAndForceDeleteRequest.php │ │ │ │ │ ├── BrandStoreRequest.php │ │ │ │ │ └── BrandUpdateRequest.php │ │ │ │ ├── Resource │ │ │ │ │ └── BrandIndexResource.php │ │ │ │ ├── ResourceCollection │ │ │ │ │ └── BrandResourceCollection.php │ │ │ │ └── Service │ │ │ │ │ └── BrandService.php │ │ │ ├── Category │ │ │ │ ├── Collection │ │ │ │ │ └── CategoryIndexCollection.php │ │ │ │ ├── Contract │ │ │ │ │ └── CategoryInterface.php │ │ │ │ ├── Controller │ │ │ │ │ └── CategoryController.php │ │ │ │ ├── Model │ │ │ │ │ └── Category.php │ │ │ │ ├── Relation │ │ │ │ │ └── CategoryAttribute │ │ │ │ │ │ └── Model │ │ │ │ │ │ └── CategoryAttribute.php │ │ │ │ ├── Repository │ │ │ │ │ └── CategoryRepository.php │ │ │ │ ├── Request │ │ │ │ │ ├── CategoryIndexRequest.php │ │ │ │ │ ├── CategoryRestoreAndForceDeleteRequest.php │ │ │ │ │ ├── CategoryStoreRequest.php │ │ │ │ │ └── CategoryUpdateRequest.php │ │ │ │ ├── Resource │ │ │ │ │ ├── CategoryCreateResource.php │ │ │ │ │ └── CategoryIndexResource.php │ │ │ │ ├── ResourceCollection │ │ │ │ │ ├── CategoryCreateResourceCollection.php │ │ │ │ │ └── CategoryEditResourceCollection.php │ │ │ │ └── Service │ │ │ │ │ └── CategoryService.php │ │ │ ├── Coupon │ │ │ │ ├── Collection │ │ │ │ │ └── CouponIndexCollection.php │ │ │ │ ├── Contract │ │ │ │ │ └── CouponInterface.php │ │ │ │ ├── Controller │ │ │ │ │ └── CouponController.php │ │ │ │ ├── Enumeration │ │ │ │ │ ├── CouponStatusEnumeration.php │ │ │ │ │ └── CouponTypeEnumeration.php │ │ │ │ ├── Model │ │ │ │ │ └── Coupon.php │ │ │ │ ├── Repository │ │ │ │ │ └── CouponRepository.php │ │ │ │ ├── Request │ │ │ │ │ ├── CouponIndexRequest.php │ │ │ │ │ ├── CouponRestoreAndForceDeleteRequest.php │ │ │ │ │ ├── CouponStoreRequest.php │ │ │ │ │ └── CouponUpdateRequest.php │ │ │ │ ├── Resource │ │ │ │ │ └── CouponIndexResource.php │ │ │ │ ├── ResourceCollection │ │ │ │ │ └── CouponEditResourceCollection.php │ │ │ │ └── Service │ │ │ │ │ └── CouponService.php │ │ │ ├── ProductAttribute │ │ │ │ └── Model │ │ │ │ │ └── ProductAttribute.php │ │ │ ├── ProductCategory │ │ │ │ ├── Model │ │ │ │ │ └── ProductCategory.php │ │ │ │ └── ResourceCollection │ │ │ │ │ └── ProductCategoryResourceCollection.php │ │ │ └── ProductVariant │ │ │ │ ├── Contract │ │ │ │ └── ProductVariantInterface.php │ │ │ │ ├── Model │ │ │ │ └── ProductVariant.php │ │ │ │ ├── Repository │ │ │ │ └── ProductVariantRepository.php │ │ │ │ └── ResourceCollection │ │ │ │ └── ProductVariantRelationResourceCollection.php │ │ ├── Repository │ │ │ └── ProductRepository.php │ │ ├── Request │ │ │ ├── ProductIndexRequest.php │ │ │ ├── ProductRestoreAndForceDeleteRequest.php │ │ │ ├── ProductStoreRequest.php │ │ │ └── ProductUpdateRequest.php │ │ ├── Resource │ │ │ └── ProductIndexResource.php │ │ ├── ResourceCollection │ │ │ ├── ProductEditResourceCollection.php │ │ │ └── ProductResourceCollection.php │ │ └── Service │ │ │ └── ProductService.php │ │ └── User │ │ ├── Collection │ │ └── UserIndexCollection.php │ │ ├── Contract │ │ └── UserInterface.php │ │ ├── Controller │ │ └── UserController.php │ │ ├── Enumeration │ │ └── UserRoleEnumeration.php │ │ ├── Model │ │ └── User.php │ │ ├── Relation │ │ ├── Permission │ │ │ ├── Contract │ │ │ │ └── PermissionInterface.php │ │ │ ├── Repository │ │ │ │ └── PermissionRepository.php │ │ │ └── ResourceCollection │ │ │ │ └── PermissionRelationResourceCollection.php │ │ └── Role │ │ │ ├── Collection │ │ │ └── RoleIndexCollection.php │ │ │ ├── Contract │ │ │ └── RoleInterface.php │ │ │ ├── Controller │ │ │ └── RoleController.php │ │ │ ├── Model │ │ │ └── Role.php │ │ │ ├── Repository │ │ │ └── RoleRepository.php │ │ │ ├── Request │ │ │ ├── RoleIndexRequest.php │ │ │ ├── RoleRestoreAndForceDeleteRequest.php │ │ │ ├── RoleStoreRequest.php │ │ │ └── RoleUpdateRequest.php │ │ │ ├── Resource │ │ │ └── RoleIndexResource.php │ │ │ ├── ResourceCollection │ │ │ ├── RoleEditResourceCollection.php │ │ │ ├── RoleRelationResourceCollection.php │ │ │ └── RoleResourceCollection.php │ │ │ └── Service │ │ │ └── RoleService.php │ │ ├── Repository │ │ └── UserRepository.php │ │ ├── Request │ │ ├── UserAuthorizeRequest.php │ │ ├── UserProfileUpdateRequest.php │ │ └── UserUpdateRequest.php │ │ ├── Resource │ │ └── UserIndexResource.php │ │ ├── ResourceCollection │ │ ├── UserEditResourceCollection.php │ │ └── UserProfileEditResourceCollection.php │ │ ├── Rule │ │ └── UserOldPasswordCheck.php │ │ └── Service │ │ └── UserService.php ├── Model │ └── BaseModel.php ├── Observers │ ├── AttributeObserver.php │ ├── AttributeValueObserver.php │ ├── BrandObserver.php │ ├── CategoryObserver.php │ ├── MediaObserver.php │ ├── ProductObserver.php │ └── RoleObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AppStructProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── PatternBindProvider.php │ └── RouteServiceProvider.php ├── Response │ └── ResponseHandler.php └── Traits │ ├── DatatableCollectionTrait.php │ └── LogTrait.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── datatables.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── settings.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_11_28_195219_create_brands_table.php │ ├── 2022_11_28_195228_create_products_table.php │ ├── 2022_11_28_195232_create_categories_table.php │ ├── 2022_11_28_201406_create_attributes_table.php │ ├── 2022_11_28_201429_create_attribute_values_table.php │ ├── 2022_11_28_202121_create_product_attributes_table.php │ ├── 2022_11_28_202341_create_product_categories_table.php │ ├── 2022_11_28_202823_create_product_variants_table.php │ ├── 2022_12_03_144102_create_permission_tables.php │ ├── 2023_04_10_150319_create_coupons_table.php │ ├── 2023_05_25_203822_create_media_table.php │ ├── 2023_05_27_090959_create_media_polymorphics_table.php │ └── 2023_07_20_182238_create_category_attributes_table.php └── seeders │ ├── AttributeAndAttributeValueSeeder.php │ ├── BrandSeeder.php │ ├── CategorySeeder.php │ ├── CouponSeeder.php │ ├── DatabaseSeeder.php │ ├── MediaSeeder.php │ ├── PermissionSeeder.php │ ├── ProductSeeder.php │ ├── RoleSeeder.php │ └── UserSeeder.php ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ ├── validation.php │ └── words.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css └── js │ ├── app.js │ └── bootstrap.js ├── routes ├── api.php ├── channels.php ├── console.php ├── main │ └── setting │ │ └── api.php ├── media │ └── relation │ │ └── image │ │ └── api.php ├── product │ ├── api.php │ └── relation │ │ ├── attribute │ │ ├── api.php │ │ └── relation │ │ │ └── value │ │ │ └── api.php │ │ ├── brand │ │ └── api.php │ │ ├── category │ │ └── api.php │ │ └── coupon │ │ └── api.php ├── user │ ├── api.php │ └── relation │ │ └── role │ │ └── api.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── clockwork │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── AuthorizationTestCase.php ├── CreatesApplication.php ├── Feature │ ├── AttributeTest.php │ ├── AttributeValueTest.php │ ├── AuthorizationTest.php │ ├── BrandTest.php │ ├── CategoryTest.php │ ├── ProductTest.php │ └── RoleTest.php └── TestCase.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/General/Enumeration/FreshAndSeedCommandEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Console/Commands/General/Enumeration/FreshAndSeedCommandEnumeration.php -------------------------------------------------------------------------------- /app/Console/Commands/General/FreshAndSeederCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Console/Commands/General/FreshAndSeederCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/AutoloadHelpers/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Helpers/AutoloadHelpers/functions.php -------------------------------------------------------------------------------- /app/Helpers/DatatableHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Helpers/DatatableHelper.php -------------------------------------------------------------------------------- /app/Helpers/EnumerationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Helpers/EnumerationHelper.php -------------------------------------------------------------------------------- /app/Helpers/FileHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Helpers/FileHelper.php -------------------------------------------------------------------------------- /app/Http/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Controller.php -------------------------------------------------------------------------------- /app/Http/Enumeration/RouteGroupNameEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Enumeration/RouteGroupNameEnumeration.php -------------------------------------------------------------------------------- /app/Http/Enumeration/RouteGroupPathEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Enumeration/RouteGroupPathEnumeration.php -------------------------------------------------------------------------------- /app/Http/Enumeration/RouteGroupThrottleEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Enumeration/RouteGroupThrottleEnumeration.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Struct/Main/Setting/Controller/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Main/Setting/Controller/SettingController.php -------------------------------------------------------------------------------- /app/Http/Struct/Main/Setting/Enumeration/SettingMimeTypeEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Main/Setting/Enumeration/SettingMimeTypeEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/Main/Setting/Request/SettingUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Main/Setting/Request/SettingUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Main/Setting/Service/SettingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Main/Setting/Service/SettingService.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Contract/MediaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Contract/MediaInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Controller/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Controller/MediaController.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Enumeration/MediaPathEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Enumeration/MediaPathEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Model/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Model/Media.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Relation/MediaPolymorphic/Contract/MediaPolymorphicInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Relation/MediaPolymorphic/Contract/MediaPolymorphicInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Relation/MediaPolymorphic/Model/MediaPolymorphic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Relation/MediaPolymorphic/Model/MediaPolymorphic.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Relation/MediaPolymorphic/Repository/MediaPolymorphicRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Relation/MediaPolymorphic/Repository/MediaPolymorphicRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Relation/MediaPolymorphic/Trait/MediaPolymorphicTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Relation/MediaPolymorphic/Trait/MediaPolymorphicTrait.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Repository/MediaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Repository/MediaRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Request/MediaDestroyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Request/MediaDestroyRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Request/MediaIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Request/MediaIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Request/MediaRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Request/MediaRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Request/MediaStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Request/MediaStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/ResourceCollection/MediaResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/ResourceCollection/MediaResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Service/MediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Service/MediaService.php -------------------------------------------------------------------------------- /app/Http/Struct/Media/Trait/MediaTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Media/Trait/MediaTrait.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Collection/ProductIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Collection/ProductIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Contract/ProductInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Contract/ProductInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Controller/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Controller/ProductController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Enumeration/ProductStatusEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Enumeration/ProductStatusEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Model/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Model/Product.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Collection/AttributeIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Collection/AttributeIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Contract/AttributeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Contract/AttributeInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Controller/AttributeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Controller/AttributeController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Model/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Model/Attribute.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Collection/AttributeValueIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Collection/AttributeValueIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Contract/AttributeValueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Contract/AttributeValueInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Controller/AttributeValueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Controller/AttributeValueController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Model/AttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Model/AttributeValue.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Repository/AttributeValueRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Repository/AttributeValueRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Request/AttributeValueUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Resource/AttributeValueIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Resource/AttributeValueIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/ResourceCollection/AttributeValueEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/ResourceCollection/AttributeValueEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/ResourceCollection/AttributeValueResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/ResourceCollection/AttributeValueResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Service/AttributeValueService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Relation/AttributeValue/Service/AttributeValueService.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Repository/AttributeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Repository/AttributeRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Request/AttributeIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Request/AttributeIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Request/AttributeRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Request/AttributeRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Request/AttributeStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Request/AttributeStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Request/AttributeUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Request/AttributeUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Resource/AttributeIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Resource/AttributeIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeRelationResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeRelationResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/ResourceCollection/AttributeResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Attribute/Service/AttributeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Attribute/Service/AttributeService.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Collection/BrandIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Collection/BrandIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Contract/BrandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Contract/BrandInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Controller/BrandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Controller/BrandController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Model/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Model/Brand.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Repository/BrandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Repository/BrandRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Request/BrandIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Request/BrandIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Request/BrandRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Request/BrandRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Request/BrandStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Request/BrandStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Request/BrandUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Request/BrandUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Resource/BrandIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Resource/BrandIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/ResourceCollection/BrandResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/ResourceCollection/BrandResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Brand/Service/BrandService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Brand/Service/BrandService.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Collection/CategoryIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Collection/CategoryIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Contract/CategoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Contract/CategoryInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Controller/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Controller/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Model/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Model/Category.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Relation/CategoryAttribute/Model/CategoryAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Relation/CategoryAttribute/Model/CategoryAttribute.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Repository/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Repository/CategoryRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Request/CategoryIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Request/CategoryIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Request/CategoryRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Request/CategoryRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Request/CategoryStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Request/CategoryStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Request/CategoryUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Request/CategoryUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Resource/CategoryCreateResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Resource/CategoryCreateResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Resource/CategoryIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Resource/CategoryIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/ResourceCollection/CategoryCreateResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/ResourceCollection/CategoryCreateResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/ResourceCollection/CategoryEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/ResourceCollection/CategoryEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Category/Service/CategoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Category/Service/CategoryService.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Collection/CouponIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Collection/CouponIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Contract/CouponInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Contract/CouponInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Controller/CouponController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Controller/CouponController.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Enumeration/CouponStatusEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Enumeration/CouponStatusEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Enumeration/CouponTypeEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Enumeration/CouponTypeEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Model/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Model/Coupon.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Repository/CouponRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Repository/CouponRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Request/CouponIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Request/CouponIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Request/CouponRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Request/CouponRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Request/CouponStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Request/CouponStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Request/CouponUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Request/CouponUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Resource/CouponIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Resource/CouponIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/ResourceCollection/CouponEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/ResourceCollection/CouponEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/Coupon/Service/CouponService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/Coupon/Service/CouponService.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductAttribute/Model/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductAttribute/Model/ProductAttribute.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductCategory/Model/ProductCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductCategory/Model/ProductCategory.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductCategory/ResourceCollection/ProductCategoryResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductCategory/ResourceCollection/ProductCategoryResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductVariant/Contract/ProductVariantInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductVariant/Contract/ProductVariantInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductVariant/Model/ProductVariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductVariant/Model/ProductVariant.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductVariant/Repository/ProductVariantRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductVariant/Repository/ProductVariantRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Relation/ProductVariant/ResourceCollection/ProductVariantRelationResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Relation/ProductVariant/ResourceCollection/ProductVariantRelationResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Repository/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Repository/ProductRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Request/ProductIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Request/ProductIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Request/ProductRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Request/ProductRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Request/ProductStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Request/ProductStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Request/ProductUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Request/ProductUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Resource/ProductIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Resource/ProductIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/ResourceCollection/ProductEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/ResourceCollection/ProductEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/ResourceCollection/ProductResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/ResourceCollection/ProductResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/Product/Service/ProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/Product/Service/ProductService.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Collection/UserIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Collection/UserIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Contract/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Contract/UserInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Controller/UserController.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Enumeration/UserRoleEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Enumeration/UserRoleEnumeration.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Model/User.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Permission/Contract/PermissionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Permission/Contract/PermissionInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Permission/Repository/PermissionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Permission/Repository/PermissionRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Permission/ResourceCollection/PermissionRelationResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Permission/ResourceCollection/PermissionRelationResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Collection/RoleIndexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Collection/RoleIndexCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Contract/RoleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Contract/RoleInterface.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Controller/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Controller/RoleController.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Model/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Model/Role.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Repository/RoleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Repository/RoleRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Request/RoleIndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Request/RoleIndexRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Request/RoleRestoreAndForceDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Request/RoleRestoreAndForceDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Request/RoleStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Request/RoleStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Request/RoleUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Request/RoleUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Resource/RoleIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Resource/RoleIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/ResourceCollection/RoleEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/ResourceCollection/RoleEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/ResourceCollection/RoleRelationResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/ResourceCollection/RoleRelationResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/ResourceCollection/RoleResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/ResourceCollection/RoleResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Relation/Role/Service/RoleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Relation/Role/Service/RoleService.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Repository/UserRepository.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Request/UserAuthorizeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Request/UserAuthorizeRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Request/UserProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Request/UserProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Request/UserUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Request/UserUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Resource/UserIndexResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Resource/UserIndexResource.php -------------------------------------------------------------------------------- /app/Http/Struct/User/ResourceCollection/UserEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/ResourceCollection/UserEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/ResourceCollection/UserProfileEditResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/ResourceCollection/UserProfileEditResourceCollection.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Rule/UserOldPasswordCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Rule/UserOldPasswordCheck.php -------------------------------------------------------------------------------- /app/Http/Struct/User/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Http/Struct/User/Service/UserService.php -------------------------------------------------------------------------------- /app/Model/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Model/BaseModel.php -------------------------------------------------------------------------------- /app/Observers/AttributeObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/AttributeObserver.php -------------------------------------------------------------------------------- /app/Observers/AttributeValueObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/AttributeValueObserver.php -------------------------------------------------------------------------------- /app/Observers/BrandObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/BrandObserver.php -------------------------------------------------------------------------------- /app/Observers/CategoryObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/CategoryObserver.php -------------------------------------------------------------------------------- /app/Observers/MediaObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/MediaObserver.php -------------------------------------------------------------------------------- /app/Observers/ProductObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/ProductObserver.php -------------------------------------------------------------------------------- /app/Observers/RoleObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Observers/RoleObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AppStructProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/AppStructProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PatternBindProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/PatternBindProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Response/ResponseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Response/ResponseHandler.php -------------------------------------------------------------------------------- /app/Traits/DatatableCollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Traits/DatatableCollectionTrait.php -------------------------------------------------------------------------------- /app/Traits/LogTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/app/Traits/LogTrait.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/settings.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-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/mkeremcansev/ww-commerce/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_195219_create_brands_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_195219_create_brands_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_195228_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_195228_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_195232_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_195232_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_201406_create_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_201406_create_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_201429_create_attribute_values_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_201429_create_attribute_values_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_202121_create_product_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_202121_create_product_attributes_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_202341_create_product_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_202341_create_product_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_28_202823_create_product_variants_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_11_28_202823_create_product_variants_table.php -------------------------------------------------------------------------------- /database/migrations/2022_12_03_144102_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2022_12_03_144102_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_04_10_150319_create_coupons_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2023_04_10_150319_create_coupons_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_25_203822_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2023_05_25_203822_create_media_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_27_090959_create_media_polymorphics_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2023_05_27_090959_create_media_polymorphics_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_20_182238_create_category_attributes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/migrations/2023_07_20_182238_create_category_attributes_table.php -------------------------------------------------------------------------------- /database/seeders/AttributeAndAttributeValueSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/AttributeAndAttributeValueSeeder.php -------------------------------------------------------------------------------- /database/seeders/BrandSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/BrandSeeder.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/CouponSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/CouponSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MediaSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/MediaSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/PermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProductSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/ProductSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/en/words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/lang/en/words.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/main/setting/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/main/setting/api.php -------------------------------------------------------------------------------- /routes/media/relation/image/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/media/relation/image/api.php -------------------------------------------------------------------------------- /routes/product/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/api.php -------------------------------------------------------------------------------- /routes/product/relation/attribute/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/relation/attribute/api.php -------------------------------------------------------------------------------- /routes/product/relation/attribute/relation/value/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/relation/attribute/relation/value/api.php -------------------------------------------------------------------------------- /routes/product/relation/brand/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/relation/brand/api.php -------------------------------------------------------------------------------- /routes/product/relation/category/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/relation/category/api.php -------------------------------------------------------------------------------- /routes/product/relation/coupon/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/product/relation/coupon/api.php -------------------------------------------------------------------------------- /routes/user/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/user/api.php -------------------------------------------------------------------------------- /routes/user/relation/role/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/user/relation/role/api.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/clockwork/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/storage/clockwork/.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/AuthorizationTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/AuthorizationTestCase.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/AttributeTest.php -------------------------------------------------------------------------------- /tests/Feature/AttributeValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/AttributeValueTest.php -------------------------------------------------------------------------------- /tests/Feature/AuthorizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/AuthorizationTest.php -------------------------------------------------------------------------------- /tests/Feature/BrandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/BrandTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/CategoryTest.php -------------------------------------------------------------------------------- /tests/Feature/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/ProductTest.php -------------------------------------------------------------------------------- /tests/Feature/RoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/Feature/RoleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeremcansev/ww-commerce/HEAD/vite.config.js --------------------------------------------------------------------------------