PROJECT STRUCTURE ================= . ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── artisan ├── composer.json ├── composer.lock ├── package.json ├── phpunit.xml ├── postcss.config.js ├── README.md ├── robloxnew.zip ├── struktur.txt ├── tailwind.config.js ├── vite.config.js ├── app │ ├── Console │ │ └── Commands │ │ └── ProcessDelivery.php │ │ │ ├── Http │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ │ │ │ │ ├── Admin │ │ │ │ ├── BankAccountController.php │ │ │ │ ├── CouponController.php │ │ │ │ ├── DashboardController.php │ │ │ │ ├── GameController.php │ │ │ │ ├── InventoryController.php │ │ │ │ ├── OrderController.php │ │ │ │ ├── ProductController.php │ │ │ │ └── UserController.php │ │ │ │ │ │ │ ├── Auth │ │ │ │ ├── LoginController.php │ │ │ │ └── RegisterController.php │ │ │ │ │ │ │ ├── Frontend │ │ │ │ ├── CartController.php │ │ │ │ ├── CheckoutController.php │ │ │ │ ├── HomeController.php │ │ │ │ ├── PageController.php │ │ │ │ └── ProductController.php │ │ │ │ │ │ │ └── User │ │ │ ├── DashboardController.php │ │ │ ├── NotificationController.php │ │ │ ├── OrderController.php │ │ │ ├── ProfileController.php │ │ │ └── TicketController.php │ │ │ │ │ └── Middleware │ │ ├── AdminMiddleware.php │ │ └── UserMiddleware.php │ │ │ ├── Jobs │ │ └── DeliverItemJob.php │ │ │ ├── Mail │ │ ├── OrderConfirmation.php │ │ ├── OrderDelivered.php │ │ ├── PaymentReceived.php │ │ └── TicketCreated.php │ │ │ ├── Models │ │ ├── BankAccount.php │ │ ├── Cart.php │ │ ├── CartItem.php │ │ ├── Cashback.php │ │ ├── Coupon.php │ │ ├── DeliveryLog.php │ │ ├── Faq.php │ │ ├── Game.php │ │ ├── Inventory.php │ │ ├── ManualPayment.php │ │ ├── Notification.php │ │ ├── Order.php │ │ ├── OrderAttachment.php │ │ ├── OrderChat.php │ │ ├── OrderItem.php │ │ ├── Payment.php │ │ ├── Product.php │ │ ├── ProductGallery.php │ │ ├── Review.php │ │ ├── Setting.php │ │ ├── SupportTicket.php │ │ ├── Testimonial.php │ │ ├── TicketMessage.php │ │ ├── Tutorial.php │ │ └── User.php │ │ │ ├── Notifications │ │ ├── NewTicketResponse.php │ │ └── OrderStatusChanged.php │ │ │ ├── Providers │ │ └── AppServiceProvider.php │ │ │ └── Services │ ├── Delivery │ │ └── RobloxDeliveryService.php │ │ │ └── Payment │ ├── MidtransService.php │ ├── StripeService.php │ └── XenditService.php ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robot.txt │ ├── robots.txt │ │ │ └── uploads │ ├── banks │ ├── games │ ├── products │ │ └── gallery │ └── proofs ├── resources │ ├── css │ │ └── app.css │ │ │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ │ │ └── views │ ├── welcome.blade.php │ │ │ ├── admin │ │ ├── dashboard.blade.php │ │ ├── settings.blade.php │ │ │ │ │ ├── banks │ │ │ └── index.blade.php │ │ │ │ │ ├── coupons │ │ │ └── index.blade.php │ │ │ │ │ ├── games │ │ │ └── index.blade.php │ │ │ │ │ ├── inventory │ │ │ └── index.blade.php │ │ │ │ │ ├── orders │ │ │ ├── detail.blade.php │ │ │ └── index.blade.php │ │ │ │ │ ├── products │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ │ │ │ └── users │ │ ├── detail.blade.php │ │ └── index.blade.php │ │ │ ├── auth │ │ ├── login.blade.php │ │ └── register.blade.php │ │ │ ├── frontend │ │ ├── cart.blade.php │ │ ├── checkout.blade.php │ │ ├── faq.blade.php │ │ ├── game.blade.php │ │ ├── home.blade.php │ │ ├── product.blade.php │ │ ├── stripe_payment.blade.php │ │ ├── success.blade.php │ │ └── support.blade.php │ │ │ ├── layouts │ │ ├── admin.blade.php │ │ ├── app.blade.php │ │ └── user.blade.php │ │ │ └── user │ ├── dashboard.blade.php │ ├── notifications.blade.php │ ├── orders.blade.php │ ├── order_detail.blade.php │ ├── profile.blade.php │ ├── tickets.blade.php │ └── ticket_detail.blade.php └── routes ├── api.php ├── console.php └── web.php