├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AuthController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── OrderController.php │ │ ├── PointController.php │ │ ├── ProductController.php │ │ ├── ProfileController.php │ │ ├── RajaOngkirController.php │ │ ├── ReviewController.php │ │ └── TransactionController.php │ ├── Kernel.php │ └── Middleware │ │ ├── AlreadyLogin.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Bank.php │ ├── Category.php │ ├── Note.php │ ├── Order.php │ ├── Payment.php │ ├── Product.php │ ├── Review.php │ ├── Role.php │ ├── Status.php │ ├── Transaction.php │ └── User.php ├── Policies │ ├── OrderPolicy.php │ ├── PointPolicy.php │ ├── ProductPolicy.php │ └── ReviewPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2022_07_31_034300_create_users_table.php │ ├── 2022_08_01_022935_create_roles_table.php │ ├── 2022_08_02_142955_create_products_table.php │ ├── 2022_08_05_141036_create_orders_table.php │ ├── 2022_08_05_142133_create_banks_table.php │ ├── 2022_08_05_142158_create_payments_table.php │ ├── 2022_08_05_142213_create_notes_table.php │ ├── 2022_08_05_142234_create_statuses_table.php │ ├── 2022_08_09_132544_create_transactions_table.php │ ├── 2022_08_11_132444_create_reviews_table.php │ └── 2022_08_12_090054_create_categories_table.php └── seeders │ ├── BankSeeder.php │ ├── CategorySeeder.php │ ├── DatabaseSeeder.php │ ├── NoteSeeder.php │ ├── PaymentSeeder.php │ ├── ProductSeeder.php │ ├── RoleSeeder.php │ ├── StatusSeeder.php │ └── UserSeeder.php ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── auth.css │ ├── global.css │ ├── home.css │ ├── landing.css │ ├── order.css │ ├── point.css │ ├── product.css │ ├── profile.css │ └── review.css ├── favicon.ico ├── index.php ├── js │ ├── customers_table.js │ ├── datatables-simple.js │ ├── edit_order.js │ ├── edit_order_proof.js │ ├── image_preview.js │ ├── landing.js │ ├── make_order.js │ ├── order_data.js │ ├── point.js │ ├── product.js │ ├── profile.js │ ├── profits_chart.js │ ├── review.js │ ├── sales_chart.js │ ├── scripts.js │ ├── transaction.js │ └── transaction_table.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ ├── home │ ├── customers.blade.php │ └── index.blade.php │ ├── landing │ └── index.blade.php │ ├── layouts │ ├── auth.blade.php │ └── main.blade.php │ ├── order │ ├── edit_order.blade.php │ ├── make_order.blade.php │ └── order_data.blade.php │ ├── partials │ ├── breadcumb.blade.php │ ├── footer.blade.php │ ├── home │ │ ├── home_admin.blade.php │ │ └── home_customers.blade.php │ ├── main_css.blade.php │ ├── order │ │ ├── blank_data.blade.php │ │ ├── filter.blade.php │ │ ├── order_detail_modal.blade.php │ │ ├── order_lists.blade.php │ │ ├── reject_order_modal.blade.php │ │ ├── transaction_proof_upload_modal.blade.php │ │ └── transfer_instructions_modal.blade.php │ ├── product │ │ └── product_detail_modal.blade.php │ ├── review │ │ └── edit_review_modal.blade.php │ ├── sidebar.blade.php │ └── topbar.blade.php │ ├── point │ └── user_point.blade.php │ ├── product │ ├── add_product.blade.php │ ├── edit_product.blade.php │ └── index.blade.php │ ├── profile │ ├── change_password.blade.php │ ├── edit_profile.blade.php │ └── my_profile.blade.php │ ├── review │ └── product_review.blade.php │ ├── transaction │ ├── add_outcome.blade.php │ ├── edit_outcome.blade.php │ └── index.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ ├── .gitignore │ │ ├── home │ │ ├── coffee.jpg │ │ ├── hero-bg.png │ │ └── laracoffee.jpg │ │ ├── icons │ │ ├── angle-down.svg │ │ ├── bank-bca.svg │ │ ├── bank-bni.svg │ │ ├── bank-bri.svg │ │ ├── bank-mandiri.svg │ │ ├── cash-on-delivery.png │ │ ├── close-icon.svg │ │ └── online-banking.png │ │ ├── landing │ │ └── landing-background.jpg │ │ ├── lotties │ │ ├── loading-animation.gif │ │ ├── loading-animation.json │ │ └── loading-animation_old.json │ │ ├── product │ │ ├── Gy6UVqa000obrsMGJaRAzZ4hWEz5WGhu38QawLzC.jpg │ │ ├── gaamRDJEO5xNbQMfgSXx91ZNIVYxid2S110yVkKg.jpg │ │ ├── r8e0iS6hEBocNNBRkmTy5uL7BUf9IjNSQmZrgKJy.jpg │ │ └── sPISped9AR4XyNKlkSpiUyo7OkcJj8mSBmPuF6Ky.png │ │ └── profile │ │ └── cV8nuMT7VBfYYtANwUxegJ366XDbw0nXdxLEvehk.jpg ├── assets │ ├── Admin │ │ ├── add_product.PNG │ │ ├── customer_lists.PNG │ │ ├── dashboard.PNG │ │ ├── detail_order.PNG │ │ ├── edit_product.PNG │ │ ├── history_order.PNG │ │ ├── product.PNG │ │ └── transactions.PNG │ └── User │ │ ├── authentication.PNG │ │ ├── edit_order.PNG │ │ ├── edit_profile.PNG │ │ ├── home.PNG │ │ ├── make_an_order.PNG │ │ ├── order_detail.PNG │ │ ├── order_list.PNG │ │ ├── product.PNG │ │ ├── product_detail.PNG │ │ ├── profile.PNG │ │ ├── registration.PNG │ │ ├── submit_review.PNG │ │ ├── upload_bukti.PNG │ │ └── user_point.PNG ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PointController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/PointController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RajaOngkirController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/RajaOngkirController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/ReviewController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Controllers/TransactionController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AlreadyLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/AlreadyLogin.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Bank.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Note.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Payment.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Review.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Status.php -------------------------------------------------------------------------------- /app/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/Transaction.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/OrderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Policies/OrderPolicy.php -------------------------------------------------------------------------------- /app/Policies/PointPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Policies/PointPolicy.php -------------------------------------------------------------------------------- /app/Policies/ProductPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Policies/ProductPolicy.php -------------------------------------------------------------------------------- /app/Policies/ReviewPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Policies/ReviewPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2022_07_31_034300_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_07_31_034300_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_01_022935_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_01_022935_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_02_142955_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_02_142955_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_05_141036_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_05_141036_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_05_142133_create_banks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_05_142133_create_banks_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_05_142158_create_payments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_05_142158_create_payments_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_05_142213_create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_05_142213_create_notes_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_05_142234_create_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_05_142234_create_statuses_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_09_132544_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_09_132544_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_11_132444_create_reviews_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_11_132444_create_reviews_table.php -------------------------------------------------------------------------------- /database/migrations/2022_08_12_090054_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/migrations/2022_08_12_090054_create_categories_table.php -------------------------------------------------------------------------------- /database/seeders/BankSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/BankSeeder.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/NoteSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/NoteSeeder.php -------------------------------------------------------------------------------- /database/seeders/PaymentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/PaymentSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProductSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/ProductSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/StatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/StatusSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/auth.css -------------------------------------------------------------------------------- /public/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/global.css -------------------------------------------------------------------------------- /public/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/home.css -------------------------------------------------------------------------------- /public/css/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/landing.css -------------------------------------------------------------------------------- /public/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/order.css -------------------------------------------------------------------------------- /public/css/point.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/point.css -------------------------------------------------------------------------------- /public/css/product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/product.css -------------------------------------------------------------------------------- /public/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/profile.css -------------------------------------------------------------------------------- /public/css/review.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/css/review.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/customers_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/customers_table.js -------------------------------------------------------------------------------- /public/js/datatables-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/datatables-simple.js -------------------------------------------------------------------------------- /public/js/edit_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/edit_order.js -------------------------------------------------------------------------------- /public/js/edit_order_proof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/edit_order_proof.js -------------------------------------------------------------------------------- /public/js/image_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/image_preview.js -------------------------------------------------------------------------------- /public/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/landing.js -------------------------------------------------------------------------------- /public/js/make_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/make_order.js -------------------------------------------------------------------------------- /public/js/order_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/order_data.js -------------------------------------------------------------------------------- /public/js/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/point.js -------------------------------------------------------------------------------- /public/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/product.js -------------------------------------------------------------------------------- /public/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/profile.js -------------------------------------------------------------------------------- /public/js/profits_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/profits_chart.js -------------------------------------------------------------------------------- /public/js/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/review.js -------------------------------------------------------------------------------- /public/js/sales_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/sales_chart.js -------------------------------------------------------------------------------- /public/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/scripts.js -------------------------------------------------------------------------------- /public/js/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/transaction.js -------------------------------------------------------------------------------- /public/js/transaction_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/public/js/transaction_table.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | 4 | -- hehe buoi -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/home/customers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/home/customers.blade.php -------------------------------------------------------------------------------- /resources/views/home/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/home/index.blade.php -------------------------------------------------------------------------------- /resources/views/landing/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/landing/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/layouts/main.blade.php -------------------------------------------------------------------------------- /resources/views/order/edit_order.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/order/edit_order.blade.php -------------------------------------------------------------------------------- /resources/views/order/make_order.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/order/make_order.blade.php -------------------------------------------------------------------------------- /resources/views/order/order_data.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/order/order_data.blade.php -------------------------------------------------------------------------------- /resources/views/partials/breadcumb.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/breadcumb.blade.php -------------------------------------------------------------------------------- /resources/views/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/partials/home/home_admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/home/home_admin.blade.php -------------------------------------------------------------------------------- /resources/views/partials/home/home_customers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/home/home_customers.blade.php -------------------------------------------------------------------------------- /resources/views/partials/main_css.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/main_css.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/blank_data.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/blank_data.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/filter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/filter.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/order_detail_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/order_detail_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/order_lists.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/order_lists.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/reject_order_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/reject_order_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/transaction_proof_upload_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/transaction_proof_upload_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/order/transfer_instructions_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/order/transfer_instructions_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/product/product_detail_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/product/product_detail_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/review/edit_review_modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/review/edit_review_modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/partials/topbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/partials/topbar.blade.php -------------------------------------------------------------------------------- /resources/views/point/user_point.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/point/user_point.blade.php -------------------------------------------------------------------------------- /resources/views/product/add_product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/product/add_product.blade.php -------------------------------------------------------------------------------- /resources/views/product/edit_product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/product/edit_product.blade.php -------------------------------------------------------------------------------- /resources/views/product/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/product/index.blade.php -------------------------------------------------------------------------------- /resources/views/profile/change_password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/profile/change_password.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit_profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/profile/edit_profile.blade.php -------------------------------------------------------------------------------- /resources/views/profile/my_profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/profile/my_profile.blade.php -------------------------------------------------------------------------------- /resources/views/review/product_review.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/review/product_review.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/add_outcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/transaction/add_outcome.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/edit_outcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/transaction/edit_outcome.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/transaction/index.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/home/coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/home/coffee.jpg -------------------------------------------------------------------------------- /storage/app/public/home/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/home/hero-bg.png -------------------------------------------------------------------------------- /storage/app/public/home/laracoffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/home/laracoffee.jpg -------------------------------------------------------------------------------- /storage/app/public/icons/angle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/angle-down.svg -------------------------------------------------------------------------------- /storage/app/public/icons/bank-bca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/bank-bca.svg -------------------------------------------------------------------------------- /storage/app/public/icons/bank-bni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/bank-bni.svg -------------------------------------------------------------------------------- /storage/app/public/icons/bank-bri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/bank-bri.svg -------------------------------------------------------------------------------- /storage/app/public/icons/bank-mandiri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/bank-mandiri.svg -------------------------------------------------------------------------------- /storage/app/public/icons/cash-on-delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/cash-on-delivery.png -------------------------------------------------------------------------------- /storage/app/public/icons/close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/close-icon.svg -------------------------------------------------------------------------------- /storage/app/public/icons/online-banking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/icons/online-banking.png -------------------------------------------------------------------------------- /storage/app/public/landing/landing-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/landing/landing-background.jpg -------------------------------------------------------------------------------- /storage/app/public/lotties/loading-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/lotties/loading-animation.gif -------------------------------------------------------------------------------- /storage/app/public/lotties/loading-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/lotties/loading-animation.json -------------------------------------------------------------------------------- /storage/app/public/lotties/loading-animation_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/lotties/loading-animation_old.json -------------------------------------------------------------------------------- /storage/app/public/product/Gy6UVqa000obrsMGJaRAzZ4hWEz5WGhu38QawLzC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/product/Gy6UVqa000obrsMGJaRAzZ4hWEz5WGhu38QawLzC.jpg -------------------------------------------------------------------------------- /storage/app/public/product/gaamRDJEO5xNbQMfgSXx91ZNIVYxid2S110yVkKg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/product/gaamRDJEO5xNbQMfgSXx91ZNIVYxid2S110yVkKg.jpg -------------------------------------------------------------------------------- /storage/app/public/product/r8e0iS6hEBocNNBRkmTy5uL7BUf9IjNSQmZrgKJy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/product/r8e0iS6hEBocNNBRkmTy5uL7BUf9IjNSQmZrgKJy.jpg -------------------------------------------------------------------------------- /storage/app/public/product/sPISped9AR4XyNKlkSpiUyo7OkcJj8mSBmPuF6Ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/product/sPISped9AR4XyNKlkSpiUyo7OkcJj8mSBmPuF6Ky.png -------------------------------------------------------------------------------- /storage/app/public/profile/cV8nuMT7VBfYYtANwUxegJ366XDbw0nXdxLEvehk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/app/public/profile/cV8nuMT7VBfYYtANwUxegJ366XDbw0nXdxLEvehk.jpg -------------------------------------------------------------------------------- /storage/assets/Admin/add_product.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/add_product.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/customer_lists.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/customer_lists.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/dashboard.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/detail_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/detail_order.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/edit_product.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/edit_product.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/history_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/history_order.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/product.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/product.PNG -------------------------------------------------------------------------------- /storage/assets/Admin/transactions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/Admin/transactions.PNG -------------------------------------------------------------------------------- /storage/assets/User/authentication.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/authentication.PNG -------------------------------------------------------------------------------- /storage/assets/User/edit_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/edit_order.PNG -------------------------------------------------------------------------------- /storage/assets/User/edit_profile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/edit_profile.PNG -------------------------------------------------------------------------------- /storage/assets/User/home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/home.PNG -------------------------------------------------------------------------------- /storage/assets/User/make_an_order.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/make_an_order.PNG -------------------------------------------------------------------------------- /storage/assets/User/order_detail.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/order_detail.PNG -------------------------------------------------------------------------------- /storage/assets/User/order_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/order_list.PNG -------------------------------------------------------------------------------- /storage/assets/User/product.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/product.PNG -------------------------------------------------------------------------------- /storage/assets/User/product_detail.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/product_detail.PNG -------------------------------------------------------------------------------- /storage/assets/User/profile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/profile.PNG -------------------------------------------------------------------------------- /storage/assets/User/registration.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/registration.PNG -------------------------------------------------------------------------------- /storage/assets/User/submit_review.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/submit_review.PNG -------------------------------------------------------------------------------- /storage/assets/User/upload_bukti.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/upload_bukti.PNG -------------------------------------------------------------------------------- /storage/assets/User/user_point.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/storage/assets/User/user_point.PNG -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/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/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snykk/Laracoffee/HEAD/vite.config.js --------------------------------------------------------------------------------