├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── api.postman.json ├── app ├── Console │ └── Kernel.php ├── Dtos │ └── response │ │ ├── AbstractPagedDto.php │ │ ├── Address │ │ ├── AddressListDto.php │ │ └── Partials │ │ │ └── AddressDetailsDto.php │ │ ├── Category │ │ ├── CategoryListDto.php │ │ └── Partials │ │ │ └── BasicCategoryDto.php │ │ ├── Comment │ │ ├── CommentDetailsDto.php │ │ ├── CommentListDto.php │ │ └── partials │ │ │ ├── CommentsCountDto.php │ │ │ └── CommentsDataSection.php │ │ ├── Order │ │ ├── OrderDetailsDto.php │ │ ├── OrderListDto.php │ │ └── Partials │ │ │ ├── OrderListDataSectionDto.php │ │ │ └── OrderSummaryDto.php │ │ ├── Page │ │ └── HomeDto.php │ │ ├── Product │ │ ├── Partials │ │ │ ├── ProductElementalDto.php │ │ │ ├── ProductListDataSection.php │ │ │ └── ProductSummaryDto.php │ │ ├── ProductDetailsDto.php │ │ └── ProductListDto.php │ │ ├── Shared │ │ ├── AppResponse.php │ │ ├── ErrorResponse.php │ │ ├── PageMeta.php │ │ └── SuccessResponse.php │ │ ├── Tag │ │ ├── Partial │ │ │ └── BasicTagDto.php │ │ └── TagListDto.php │ │ ├── User │ │ ├── Partials │ │ │ ├── UserListDataSection.php │ │ │ ├── UserOnlyUsernameDto.php │ │ │ └── UserUsernameAndPicDto.php │ │ └── UserListDto.php │ │ ├── admin │ │ └── UsersDataSection.java │ │ └── auth │ │ └── AuthSuccessDto.java ├── Events │ ├── TagCreatedOrUpdatedEvent.php │ └── UserPrePersistEvent.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── AuthApiController.php │ │ ├── AuthenticationController.php │ │ ├── BaseController.php │ │ ├── CategoriesController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── OrderController.php │ │ ├── PageController.php │ │ ├── ProductController.php │ │ ├── ProfileController.php │ │ ├── TagsController.php │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── IsAdminMiddleware.php │ │ ├── JwtMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Listeners │ └── TagChangedListener.php ├── Middlewares │ ├── IsAdminMiddleware.php │ └── VerifyCsrfToken.php ├── Models │ ├── Address.php │ ├── Category.php │ ├── CategoryImage.php │ ├── Comment.php │ ├── FileUpload.php │ ├── Order.php │ ├── OrderItem.php │ ├── Post.php │ ├── Product.php │ ├── ProductImage.php │ ├── Role.php │ ├── Tag.php │ ├── TagImage.php │ └── User.php ├── Observers │ └── UserObserver.php ├── Policies │ └── CommentsPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── routes.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── jwt.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AddressFactory.php │ ├── CategoryFactory.php │ ├── CommentFactory.php │ ├── OrderFactory.php │ ├── OrderItemFactory.php │ ├── ProductFactory.php │ ├── RoleFactory.php │ ├── TagFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_11_24_174036_create_products_table.php │ ├── 2018_11_24_174054_create_orders_table.php │ ├── 2018_11_24_174108_create_order_items_table.php │ ├── 2018_11_24_174145_create_addresses_table.php │ ├── 2018_11_24_174230_create_tags_table.php │ ├── 2018_11_24_174241_create_categories_table.php │ ├── 2018_11_24_174254_create_roles_table.php │ ├── 2018_11_24_174311_create_comments_table.php │ ├── 2019_01_09_165927_add_names_to_users_table.php │ ├── 2019_01_09_175645_rename_name_column.php │ └── 2019_01_18_102358_create_file_uploads_table.php └── seeds │ └── DatabaseSeeder.php ├── github_images ├── db_structure.png └── postman.png ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── robots.txt └── web.config ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/.gitignore -------------------------------------------------------------------------------- /api.postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/api.postman.json -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Dtos/response/AbstractPagedDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/AbstractPagedDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Address/AddressListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Address/AddressListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Address/Partials/AddressDetailsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Address/Partials/AddressDetailsDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Category/CategoryListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Category/CategoryListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Category/Partials/BasicCategoryDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Category/Partials/BasicCategoryDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Comment/CommentDetailsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Comment/CommentDetailsDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Comment/CommentListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Comment/CommentListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Comment/partials/CommentsCountDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Comment/partials/CommentsCountDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Comment/partials/CommentsDataSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Comment/partials/CommentsDataSection.php -------------------------------------------------------------------------------- /app/Dtos/response/Order/OrderDetailsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Order/OrderDetailsDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Order/OrderListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Order/OrderListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Order/Partials/OrderListDataSectionDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Order/Partials/OrderListDataSectionDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Order/Partials/OrderSummaryDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Order/Partials/OrderSummaryDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Page/HomeDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Page/HomeDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Product/Partials/ProductElementalDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Product/Partials/ProductElementalDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Product/Partials/ProductListDataSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Product/Partials/ProductListDataSection.php -------------------------------------------------------------------------------- /app/Dtos/response/Product/Partials/ProductSummaryDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Product/Partials/ProductSummaryDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Product/ProductDetailsDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Product/ProductDetailsDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Product/ProductListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Product/ProductListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Shared/AppResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Shared/AppResponse.php -------------------------------------------------------------------------------- /app/Dtos/response/Shared/ErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Shared/ErrorResponse.php -------------------------------------------------------------------------------- /app/Dtos/response/Shared/PageMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Shared/PageMeta.php -------------------------------------------------------------------------------- /app/Dtos/response/Shared/SuccessResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Shared/SuccessResponse.php -------------------------------------------------------------------------------- /app/Dtos/response/Tag/Partial/BasicTagDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Tag/Partial/BasicTagDto.php -------------------------------------------------------------------------------- /app/Dtos/response/Tag/TagListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/Tag/TagListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/User/Partials/UserListDataSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/User/Partials/UserListDataSection.php -------------------------------------------------------------------------------- /app/Dtos/response/User/Partials/UserOnlyUsernameDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/User/Partials/UserOnlyUsernameDto.php -------------------------------------------------------------------------------- /app/Dtos/response/User/Partials/UserUsernameAndPicDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/User/Partials/UserUsernameAndPicDto.php -------------------------------------------------------------------------------- /app/Dtos/response/User/UserListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/User/UserListDto.php -------------------------------------------------------------------------------- /app/Dtos/response/admin/UsersDataSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/admin/UsersDataSection.java -------------------------------------------------------------------------------- /app/Dtos/response/auth/AuthSuccessDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Dtos/response/auth/AuthSuccessDto.java -------------------------------------------------------------------------------- /app/Events/TagCreatedOrUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Events/TagCreatedOrUpdatedEvent.php -------------------------------------------------------------------------------- /app/Events/UserPrePersistEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Events/UserPrePersistEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/AuthApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/AuthenticationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/CategoriesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/TagsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsAdminMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/IsAdminMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/JwtMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/JwtMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Listeners/TagChangedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Listeners/TagChangedListener.php -------------------------------------------------------------------------------- /app/Middlewares/IsAdminMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Middlewares/IsAdminMiddleware.php -------------------------------------------------------------------------------- /app/Middlewares/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Middlewares/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Address.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/CategoryImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/CategoryImage.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/FileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/FileUpload.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/OrderItem.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/ProductImage.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/TagImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/TagImage.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/CommentsPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Policies/CommentsPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/ApiEcommerceLaravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- 1 |