├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .styleci.yml ├── README.md ├── Screenshot (24).png ├── Screenshot (25).png ├── Screenshot (26).png ├── Screenshot (27).png ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── AdminHome.php │ │ ├── Cart.php │ │ ├── Category.php │ │ ├── CustomerHome.php │ │ ├── Options.php │ │ ├── Ordermethods.php │ │ ├── Product.php │ │ ├── Profile.php │ │ ├── Reports.php │ │ ├── Search.php │ │ └── Takeaway.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Address.php │ ├── Category.php │ ├── Option.php │ ├── OrderMethod.php │ ├── Product.php │ ├── ProductTransactions.php │ ├── Search.php │ ├── Transactions.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.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 ├── flare.php ├── hashing.php ├── ignition.php ├── laravelpwa.php ├── laravolt │ └── indonesia.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── shopping_cart.php ├── tinker.php ├── trustedproxy.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_08_03_072729_create_provinces_table.php │ ├── 2016_08_03_072750_create_cities_table.php │ ├── 2016_08_03_072804_create_districts_table.php │ ├── 2016_08_03_072819_create_villages_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_02_09_002139_create_categories_table.php │ ├── 2021_02_09_002255_create_options_table.php │ ├── 2021_02_09_002350_create_order_method_table.php │ ├── 2021_02_09_002439_create_products_table.php │ ├── 2021_02_14_223718_create_transactions_table.php │ ├── 2021_02_14_223957_create_product_transactions_table.php │ └── 2021_02_17_143551_create_billing_address_table.php └── seeders │ └── DatabaseSeeder.php ├── index.php ├── logo-512x512.png ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── images │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ ├── splash-1125x2436.png │ │ ├── splash-1242x2208.png │ │ ├── splash-1242x2688.png │ │ ├── splash-1536x2048.png │ │ ├── splash-1668x2224.png │ │ ├── splash-1668x2388.png │ │ ├── splash-2048x2732.png │ │ ├── splash-640x1136.png │ │ ├── splash-750x1334.png │ │ └── splash-828x1792.png ├── index.php ├── js │ └── app.js ├── manifest.json ├── mix-manifest.json ├── offline │ └── index.html ├── robots.txt ├── serviceworker.js ├── vendor │ └── livewire │ │ ├── livewire.js │ │ ├── livewire.js.map │ │ └── manifest.json └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── livewire │ ├── address-create.blade.php │ ├── address-update.blade.php │ ├── admin-home.blade.php │ ├── cart.blade.php │ ├── categories.blade.php │ ├── category-create.blade.php │ ├── category-update.blade.php │ ├── customer-home.blade.php │ ├── dashboard-nav.blade.php │ ├── option-create.blade.php │ ├── option-update.blade.php │ ├── options.blade.php │ ├── ordermethod-create.blade.php │ ├── ordermethod-update.blade.php │ ├── ordermethods.blade.php │ ├── product-create.blade.php │ ├── product-delete.blade.php │ ├── product-image.blade.php │ ├── product-update.blade.php │ ├── products.blade.php │ ├── profile.blade.php │ ├── receipt.blade.php │ ├── reports.blade.php │ ├── search.blade.php │ └── takeaway.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .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 └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://paypal.me/ariebj?locale.x=id_ID'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot (24).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/Screenshot (24).png -------------------------------------------------------------------------------- /Screenshot (25).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/Screenshot (25).png -------------------------------------------------------------------------------- /Screenshot (26).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/Screenshot (26).png -------------------------------------------------------------------------------- /Screenshot (27).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/Screenshot (27).png -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/AdminHome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/AdminHome.php -------------------------------------------------------------------------------- /app/Http/Livewire/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Cart.php -------------------------------------------------------------------------------- /app/Http/Livewire/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Category.php -------------------------------------------------------------------------------- /app/Http/Livewire/CustomerHome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/CustomerHome.php -------------------------------------------------------------------------------- /app/Http/Livewire/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Options.php -------------------------------------------------------------------------------- /app/Http/Livewire/Ordermethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Ordermethods.php -------------------------------------------------------------------------------- /app/Http/Livewire/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Product.php -------------------------------------------------------------------------------- /app/Http/Livewire/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Profile.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Reports.php -------------------------------------------------------------------------------- /app/Http/Livewire/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Search.php -------------------------------------------------------------------------------- /app/Http/Livewire/Takeaway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Livewire/Takeaway.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Address.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Option.php -------------------------------------------------------------------------------- /app/Models/OrderMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/OrderMethod.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/ProductTransactions.php -------------------------------------------------------------------------------- /app/Models/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Search.php -------------------------------------------------------------------------------- /app/Models/Transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/Transactions.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/flare.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/ignition.php -------------------------------------------------------------------------------- /config/laravelpwa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/laravelpwa.php -------------------------------------------------------------------------------- /config/laravolt/indonesia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/laravolt/indonesia.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/session.php -------------------------------------------------------------------------------- /config/shopping_cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/shopping_cart.php -------------------------------------------------------------------------------- /config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/tinker.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_03_072729_create_provinces_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2016_08_03_072729_create_provinces_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_03_072750_create_cities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2016_08_03_072750_create_cities_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_03_072804_create_districts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2016_08_03_072804_create_districts_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_03_072819_create_villages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2016_08_03_072819_create_villages_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_09_002139_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_09_002139_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_09_002255_create_options_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_09_002255_create_options_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_09_002350_create_order_method_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_09_002350_create_order_method_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_09_002439_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_09_002439_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_14_223718_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_14_223718_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_14_223957_create_product_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_14_223957_create_product_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_17_143551_create_billing_address_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/migrations/2021_02_17_143551_create_billing_address_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/index.php -------------------------------------------------------------------------------- /logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/logo-512x512.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/images/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/images/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/images/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/splash-1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1125x2436.png -------------------------------------------------------------------------------- /public/images/icons/splash-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1242x2208.png -------------------------------------------------------------------------------- /public/images/icons/splash-1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1242x2688.png -------------------------------------------------------------------------------- /public/images/icons/splash-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1536x2048.png -------------------------------------------------------------------------------- /public/images/icons/splash-1668x2224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1668x2224.png -------------------------------------------------------------------------------- /public/images/icons/splash-1668x2388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-1668x2388.png -------------------------------------------------------------------------------- /public/images/icons/splash-2048x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-2048x2732.png -------------------------------------------------------------------------------- /public/images/icons/splash-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-640x1136.png -------------------------------------------------------------------------------- /public/images/icons/splash-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-750x1334.png -------------------------------------------------------------------------------- /public/images/icons/splash-828x1792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/images/icons/splash-828x1792.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/offline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/offline/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/serviceworker.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/vendor/livewire/livewire.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/vendor/livewire/livewire.js.map -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/vendor/livewire/manifest.json -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/address-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/address-create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/address-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/address-update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin-home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/admin-home.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/cart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/cart.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/categories.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/categories.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/category-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/category-create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/category-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/category-update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/customer-home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/customer-home.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/dashboard-nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/dashboard-nav.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/option-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/option-create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/option-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/option-update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/options.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/options.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/ordermethod-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/ordermethod-create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/ordermethod-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/ordermethod-update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/ordermethods.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/ordermethods.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/product-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/product-create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/product-delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/product-delete.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/product-image.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/product-image.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/product-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/product-update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/products.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/profile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/receipt.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/receipt.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/reports.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/reports.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/search.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/takeaway.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/livewire/takeaway.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/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/ariebj/roakpos/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariebj/roakpos/HEAD/webpack.mix.js --------------------------------------------------------------------------------