- Framework: Laravel (version 10)
- Programming Language: php
- Database: MySQL, Neo4J
- Apply Command Bus pattern
- Building Infrastructure as code in AWS
- Building Dockerfile for this repo
- Apply Clean Architecture
- Apply Payment Gateway
- Processing abandoned orders
- Domain Layer: At the heart of the system is the Domain Layer. The domain layer consists of the core business entities. All the other layers in the system depend on the Domain layer and are there to support the Domain Layer. Domain Layer itself does not depend on any other Layer.
- Application Layer: The Application layer is where all the magic happens. This is where your business logic resides.Based on the business rules and regulations, this layer controls the flow of data to and from your business entities. Generally, this layer consists of all your services, commands, queries, exceptions, logs, etc.
- Infrastructure Layer: This is where all your external services and database logic are located. All your external services, like email service, storage solutions, message queues, third-party API calls, etc., are handled by this layer. Besides, it is also a common practice to separate database logic into its own Persistence Layer. This is where your DbContext and migrations, etc., will go.
- Presentation Layer: This is the gateway or the entry point to your application. This layer is responsible for presenting data to the end user in an easily understandable manner. You will probably implement this layer as a Web or API project consisting of controllers defining the Action Methods or API endpoints.
- composer install & composer update
- add database info in .env
- composer require laravel/passport
- php artisan migrate
- php artisan passport:install
- php artisan storage:link
- JWPlayer : For video hosting
- Laratrust: For roles & permissions
- Passport: For API Authentication
- Laravel File Manager: Laravel File Manager