├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Modules ├── Adjustment │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ └── AdjustmentsDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_07_22_003941_create_adjustments_table.php │ │ │ └── 2021_07_22_004043_create_adjusted_products_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── AdjustmentDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── AdjustedProduct.php │ │ └── Adjustment.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── AdjustmentController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── AdjustmentServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ └── actions.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Currency │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ └── CurrencyDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2021_07_31_015923_create_currencies_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── CurrencyDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ └── Currency.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── CurrencyController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── CurrencyServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ └── actions.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Expense │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── ExpenseCategoriesDataTable.php │ │ └── ExpensesDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_07_28_192608_create_expense_categories_table.php │ │ │ └── 2021_07_28_192616_create_expenses_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── ExpenseDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Expense.php │ │ └── ExpenseCategory.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── ExpenseCategoriesController.php │ │ │ └── ExpenseController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── ExpenseServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── categories │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ └── expenses │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ └── actions.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── People │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── CustomersDataTable.php │ │ └── SuppliersDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_07_29_165419_create_customers_table.php │ │ │ └── 2021_07_29_165440_create_suppliers_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PeopleDatabaseSeeder.php │ │ └── factories │ │ │ ├── .gitkeep │ │ │ ├── CustomerFactory.php │ │ │ └── SupplierFactory.php │ ├── Entities │ │ ├── .gitkeep │ │ ├── Customer.php │ │ └── Supplier.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── CustomersController.php │ │ │ └── SuppliersController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── PeopleServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── customers │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ │ └── actions.blade.php │ │ │ └── show.blade.php │ │ │ └── suppliers │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ └── actions.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Product │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── ProductCategoriesDataTable.php │ │ └── ProductDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_07_14_145038_create_categories_table.php │ │ │ └── 2021_07_14_145047_create_products_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── ProductDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Category.php │ │ └── Product.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── BarcodeController.php │ │ │ ├── CategoriesController.php │ │ │ └── ProductController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StoreProductRequest.php │ │ │ └── UpdateProductRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── ProductServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── barcode │ │ │ ├── index.blade.php │ │ │ └── print.blade.php │ │ │ ├── categories │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ └── products │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ └── actions.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Purchase │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── PurchaseDataTable.php │ │ └── PurchasePaymentsDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_08_08_021108_create_purchases_table.php │ │ │ ├── 2021_08_08_021131_create_purchase_payments_table.php │ │ │ └── 2021_08_08_021713_create_purchase_details_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PurchaseDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Purchase.php │ │ ├── PurchaseDetail.php │ │ └── PurchasePayment.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── PurchaseController.php │ │ │ └── PurchasePaymentsController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StorePurchaseRequest.php │ │ │ └── UpdatePurchaseRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── PurchaseServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── actions.blade.php │ │ │ ├── payment-status.blade.php │ │ │ └── status.blade.php │ │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ ├── print.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── PurchasesReturn │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── PurchaseReturnPaymentsDataTable.php │ │ └── PurchaseReturnsDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_08_08_222603_create_purchase_returns_table.php │ │ │ ├── 2021_08_08_222612_create_purchase_return_details_table.php │ │ │ └── 2021_08_08_222646_create_purchase_return_payments_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PurchasesReturnDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── PurchaseReturn.php │ │ ├── PurchaseReturnDetail.php │ │ └── PurchaseReturnPayment.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── PurchaseReturnPaymentsController.php │ │ │ └── PurchasesReturnController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StorePurchaseReturnRequest.php │ │ │ └── UpdatePurchaseReturnRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── PurchasesReturnServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── actions.blade.php │ │ │ ├── payment-status.blade.php │ │ │ └── status.blade.php │ │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ ├── print.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Quotation │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ └── QuotationsDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_08_16_015031_create_quotations_table.php │ │ │ └── 2021_08_16_155013_create_quotation_details_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── QuotationDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Emails │ │ └── QuotationMail.php │ ├── Entities │ │ ├── .gitkeep │ │ ├── Quotation.php │ │ └── QuotationDetails.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── QuotationController.php │ │ │ ├── QuotationSalesController.php │ │ │ └── SendQuotationEmailController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StoreQuotationRequest.php │ │ │ └── UpdateQuotationRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── QuotationServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── emails │ │ │ └── quotation.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── actions.blade.php │ │ │ └── status.blade.php │ │ │ ├── print.blade.php │ │ │ ├── quotation-sales │ │ │ └── create.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Reports │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ └── .gitkeep │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── ReportsDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── ReportsController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── ReportsServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── payments │ │ │ └── index.blade.php │ │ │ ├── profit-loss │ │ │ └── index.blade.php │ │ │ ├── purchases-return │ │ │ └── index.blade.php │ │ │ ├── purchases │ │ │ └── index.blade.php │ │ │ ├── sales-return │ │ │ └── index.blade.php │ │ │ └── sales │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Sale │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── SalePaymentsDataTable.php │ │ └── SalesDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_07_31_201003_create_sales_table.php │ │ │ ├── 2021_07_31_212446_create_sale_details_table.php │ │ │ └── 2021_08_07_192203_create_sale_payments_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── SaleDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Sale.php │ │ ├── SaleDetails.php │ │ └── SalePayment.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── PosController.php │ │ │ ├── SaleController.php │ │ │ └── SalePaymentsController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StorePosSaleRequest.php │ │ │ ├── StoreSaleRequest.php │ │ │ └── UpdateSaleRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── RouteServiceProvider.php │ │ └── SaleServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── actions.blade.php │ │ │ ├── payment-status.blade.php │ │ │ └── status.blade.php │ │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ ├── pos │ │ │ └── index.blade.php │ │ │ ├── print-pos.blade.php │ │ │ ├── print.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── SalesReturn │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── DataTables │ │ ├── SaleReturnPaymentsDataTable.php │ │ └── SaleReturnsDataTable.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_08_08_175345_create_sale_returns_table.php │ │ │ ├── 2021_08_08_175358_create_sale_return_details_table.php │ │ │ └── 2021_08_08_175406_create_sale_return_payments_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── SalesReturnDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── SaleReturn.php │ │ ├── SaleReturnDetail.php │ │ └── SaleReturnPayment.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── SaleReturnPaymentsController.php │ │ │ └── SalesReturnController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StoreSaleReturnRequest.php │ │ │ └── UpdateSaleReturnRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── RouteServiceProvider.php │ │ └── SalesReturnServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── actions.blade.php │ │ │ ├── payment-status.blade.php │ │ │ └── status.blade.php │ │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ │ ├── print.blade.php │ │ │ └── show.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Setting │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2021_07_31_140531_create_settings_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── SettingDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ └── Setting.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── SettingController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── StoreSettingsRequest.php │ │ │ └── StoreSmtpSettingsRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── RouteServiceProvider.php │ │ └── SettingServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Upload │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2021_07_16_010005_create_uploads_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── UploadDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ └── Upload.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── UploadController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── RouteServiceProvider.php │ │ └── UploadServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ └── .gitkeep │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js └── User │ ├── Config │ ├── .gitkeep │ └── config.php │ ├── Console │ └── .gitkeep │ ├── DataTables │ ├── RolesDataTable.php │ └── UsersDataTable.php │ ├── Database │ ├── Migrations │ │ └── .gitkeep │ ├── Seeders │ │ ├── .gitkeep │ │ ├── PermissionsTableSeeder.php │ │ └── UserDatabaseSeeder.php │ └── factories │ │ └── .gitkeep │ ├── Entities │ └── .gitkeep │ ├── Http │ ├── Controllers │ │ ├── .gitkeep │ │ ├── ProfileController.php │ │ ├── RolesController.php │ │ └── UsersController.php │ ├── Middleware │ │ └── .gitkeep │ └── Requests │ │ └── .gitkeep │ ├── Providers │ ├── .gitkeep │ ├── RouteServiceProvider.php │ └── UserServiceProvider.php │ ├── Resources │ ├── assets │ │ ├── .gitkeep │ │ ├── js │ │ │ └── app.js │ │ └── sass │ │ │ └── app.scss │ ├── lang │ │ └── .gitkeep │ └── views │ │ ├── .gitkeep │ │ ├── profile.blade.php │ │ ├── roles │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── partials │ │ │ ├── actions.blade.php │ │ │ └── permissions.blade.php │ │ └── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── partials │ │ ├── actions.blade.php │ │ └── roles.blade.php │ ├── Routes │ ├── .gitkeep │ ├── api.php │ └── web.php │ ├── Rules │ └── MatchCurrentPassword.php │ ├── Tests │ ├── Feature │ │ └── .gitkeep │ └── Unit │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Procfile ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── Adjustment │ │ │ └── ProductTable.php │ │ ├── Barcode │ │ │ └── ProductTable.php │ │ ├── Pos │ │ │ ├── Checkout.php │ │ │ ├── Filter.php │ │ │ └── ProductList.php │ │ ├── ProductCart.php │ │ ├── Reports │ │ │ ├── PaymentsReport.php │ │ │ ├── ProfitLossReport.php │ │ │ ├── PurchasesReport.php │ │ │ ├── PurchasesReturnReport.php │ │ │ ├── SalesReport.php │ │ │ └── SalesReturnReport.php │ │ └── SearchProduct.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ └── 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 ├── cart.php ├── cors.php ├── database.php ├── datatables-buttons.php ├── datatables-html.php ├── datatables.php ├── debugbar.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── modules.php ├── permission.php ├── queue.php ├── services.php ├── session.php ├── snappy.php ├── sweetalert.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_07_15_211319_create_media_table.php │ └── 2021_07_16_220524_create_permission_tables.php └── seeders │ ├── DatabaseSeeder.php │ └── SuperUserSeeder.php ├── modules_statuses.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── b3 │ └── bootstrap.min.css ├── css │ ├── app.css │ ├── dropzone.css │ ├── select2-coreui.min.css │ └── select2.min.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── @coreui │ │ └── icons │ │ ├── CoreUI-Icons-Brand.eot │ │ ├── CoreUI-Icons-Brand.svg │ │ ├── CoreUI-Icons-Brand.ttf │ │ ├── CoreUI-Icons-Brand.woff │ │ ├── CoreUI-Icons-Free.eot │ │ ├── CoreUI-Icons-Free.svg │ │ ├── CoreUI-Icons-Free.ttf │ │ └── CoreUI-Icons-Free.woff ├── images │ ├── fallback_product_image.png │ ├── fallback_profile_image.png │ ├── favicon.png │ ├── logo-dark.png │ ├── logo.png │ ├── screenshot.jpg │ └── vendor │ │ └── @coreui │ │ └── icons │ │ └── svg │ │ └── flag │ │ ├── cif-ad.svg │ │ ├── cif-ae.svg │ │ ├── cif-af.svg │ │ ├── cif-ag.svg │ │ ├── cif-al.svg │ │ ├── cif-am.svg │ │ ├── cif-ao.svg │ │ ├── cif-ar.svg │ │ ├── cif-at.svg │ │ ├── cif-au.svg │ │ ├── cif-az.svg │ │ ├── cif-ba.svg │ │ ├── cif-bb.svg │ │ ├── cif-bd.svg │ │ ├── cif-be.svg │ │ ├── cif-bf.svg │ │ ├── cif-bg.svg │ │ ├── cif-bh.svg │ │ ├── cif-bi.svg │ │ ├── cif-bj.svg │ │ ├── cif-bn.svg │ │ ├── cif-bo.svg │ │ ├── cif-br.svg │ │ ├── cif-bs.svg │ │ ├── cif-bt.svg │ │ ├── cif-bw.svg │ │ ├── cif-by.svg │ │ ├── cif-bz.svg │ │ ├── cif-ca.svg │ │ ├── cif-cd.svg │ │ ├── cif-cf.svg │ │ ├── cif-cg.svg │ │ ├── cif-ch.svg │ │ ├── cif-ci.svg │ │ ├── cif-cl.svg │ │ ├── cif-cm.svg │ │ ├── cif-cn.svg │ │ ├── cif-co.svg │ │ ├── cif-cr.svg │ │ ├── cif-cu.svg │ │ ├── cif-cv.svg │ │ ├── cif-cy.svg │ │ ├── cif-cz.svg │ │ ├── cif-de.svg │ │ ├── cif-dj.svg │ │ ├── cif-dk.svg │ │ ├── cif-dm.svg │ │ ├── cif-do.svg │ │ ├── cif-dz.svg │ │ ├── cif-ec.svg │ │ ├── cif-ee.svg │ │ ├── cif-eg.svg │ │ ├── cif-er.svg │ │ ├── cif-es.svg │ │ ├── cif-et.svg │ │ ├── cif-fi.svg │ │ ├── cif-fj.svg │ │ ├── cif-fm.svg │ │ ├── cif-fr.svg │ │ ├── cif-ga.svg │ │ ├── cif-gb.svg │ │ ├── cif-gd.svg │ │ ├── cif-ge.svg │ │ ├── cif-gh.svg │ │ ├── cif-gm.svg │ │ ├── cif-gn.svg │ │ ├── cif-gq.svg │ │ ├── cif-gr.svg │ │ ├── cif-gt.svg │ │ ├── cif-gw.svg │ │ ├── cif-gy.svg │ │ ├── cif-hk.svg │ │ ├── cif-hn.svg │ │ ├── cif-hr.svg │ │ ├── cif-ht.svg │ │ ├── cif-hu.svg │ │ ├── cif-id.svg │ │ ├── cif-ie.svg │ │ ├── cif-il.svg │ │ ├── cif-in.svg │ │ ├── cif-iq.svg │ │ ├── cif-ir.svg │ │ ├── cif-is.svg │ │ ├── cif-it.svg │ │ ├── cif-jm.svg │ │ ├── cif-jo.svg │ │ ├── cif-jp.svg │ │ ├── cif-ke.svg │ │ ├── cif-kg.svg │ │ ├── cif-kh.svg │ │ ├── cif-ki.svg │ │ ├── cif-km.svg │ │ ├── cif-kn.svg │ │ ├── cif-kp.svg │ │ ├── cif-kr.svg │ │ ├── cif-kw.svg │ │ ├── cif-kz.svg │ │ ├── cif-la.svg │ │ ├── cif-lb.svg │ │ ├── cif-lc.svg │ │ ├── cif-li.svg │ │ ├── cif-lk.svg │ │ ├── cif-lr.svg │ │ ├── cif-ls.svg │ │ ├── cif-lt.svg │ │ ├── cif-lu.svg │ │ ├── cif-lv.svg │ │ ├── cif-ly.svg │ │ ├── cif-ma.svg │ │ ├── cif-mc.svg │ │ ├── cif-md.svg │ │ ├── cif-me.svg │ │ ├── cif-mg.svg │ │ ├── cif-mh.svg │ │ ├── cif-mk.svg │ │ ├── cif-ml.svg │ │ ├── cif-mm.svg │ │ ├── cif-mn.svg │ │ ├── cif-mr.svg │ │ ├── cif-mt.svg │ │ ├── cif-mu.svg │ │ ├── cif-mv.svg │ │ ├── cif-mw.svg │ │ ├── cif-mx.svg │ │ ├── cif-my.svg │ │ ├── cif-mz.svg │ │ ├── cif-na.svg │ │ ├── cif-ne.svg │ │ ├── cif-ng.svg │ │ ├── cif-ni.svg │ │ ├── cif-nl.svg │ │ ├── cif-no.svg │ │ ├── cif-np.svg │ │ ├── cif-nr.svg │ │ ├── cif-nu.svg │ │ ├── cif-nz.svg │ │ ├── cif-om.svg │ │ ├── cif-pa.svg │ │ ├── cif-pe.svg │ │ ├── cif-pg.svg │ │ ├── cif-ph.svg │ │ ├── cif-pk.svg │ │ ├── cif-pl.svg │ │ ├── cif-pt.svg │ │ ├── cif-pw.svg │ │ ├── cif-py.svg │ │ ├── cif-qa.svg │ │ ├── cif-ro.svg │ │ ├── cif-rs.svg │ │ ├── cif-ru.svg │ │ ├── cif-rw.svg │ │ ├── cif-sa.svg │ │ ├── cif-sb.svg │ │ ├── cif-sc.svg │ │ ├── cif-sd.svg │ │ ├── cif-se.svg │ │ ├── cif-sg.svg │ │ ├── cif-si.svg │ │ ├── cif-sk.svg │ │ ├── cif-sl.svg │ │ ├── cif-sm.svg │ │ ├── cif-sn.svg │ │ ├── cif-so.svg │ │ ├── cif-sr.svg │ │ ├── cif-ss.svg │ │ ├── cif-st.svg │ │ ├── cif-sv.svg │ │ ├── cif-sy.svg │ │ ├── cif-sz.svg │ │ ├── cif-td.svg │ │ ├── cif-tg.svg │ │ ├── cif-th.svg │ │ ├── cif-tj.svg │ │ ├── cif-tl.svg │ │ ├── cif-tm.svg │ │ ├── cif-tn.svg │ │ ├── cif-to.svg │ │ ├── cif-tr.svg │ │ ├── cif-tt.svg │ │ ├── cif-tv.svg │ │ ├── cif-tw.svg │ │ ├── cif-tz.svg │ │ ├── cif-ua.svg │ │ ├── cif-ug.svg │ │ ├── cif-us.svg │ │ ├── cif-uy.svg │ │ ├── cif-uz.svg │ │ ├── cif-va.svg │ │ ├── cif-vc.svg │ │ ├── cif-ve.svg │ │ ├── cif-vn.svg │ │ ├── cif-ws.svg │ │ ├── cif-xk.svg │ │ ├── cif-ye.svg │ │ ├── cif-za.svg │ │ ├── cif-zm.svg │ │ └── cif-zw.svg ├── index.php ├── js │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── chart-config.js │ ├── dropzone.js │ ├── jquery-mask-money.js │ └── select2.min.js ├── mix-manifest.json ├── robots.txt ├── vendor │ ├── datatables │ │ └── buttons.server-side.js │ └── sweetalert │ │ └── sweetalert.all.js └── web.config ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── chart-config.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 500.blade.php │ └── illustrated-layout.blade.php │ ├── home.blade.php │ ├── includes │ ├── filepond-css.blade.php │ ├── filepond-js.blade.php │ ├── main-css.blade.php │ └── main-js.blade.php │ ├── layouts │ ├── app.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ ├── menu.blade.php │ └── sidebar.blade.php │ ├── livewire │ ├── adjustment │ │ └── product-table.blade.php │ ├── barcode │ │ └── product-table.blade.php │ ├── includes │ │ ├── product-cart-modal.blade.php │ │ └── product-cart-quantity.blade.php │ ├── pos │ │ ├── checkout.blade.php │ │ ├── filter.blade.php │ │ ├── includes │ │ │ └── checkout-modal.blade.php │ │ └── product-list.blade.php │ ├── product-cart.blade.php │ ├── reports │ │ ├── payments-report.blade.php │ │ ├── profit-loss-report.blade.php │ │ ├── purchases-report.blade.php │ │ ├── purchases-return-report.blade.php │ │ ├── sales-report.blade.php │ │ └── sales-return-report.blade.php │ └── search-product.blade.php │ ├── utils │ └── alerts.blade.php │ └── vendor │ ├── datatables │ ├── editor.blade.php │ ├── function.blade.php │ ├── options.blade.php │ ├── print.blade.php │ └── script.blade.php │ └── sweetalert │ └── alert.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── 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 └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/.styleci.yml -------------------------------------------------------------------------------- /Modules/Adjustment/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Adjustment' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Adjustment/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/DataTables/AdjustmentsDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/DataTables/AdjustmentsDataTable.php -------------------------------------------------------------------------------- /Modules/Adjustment/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Entities/AdjustedProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Entities/AdjustedProduct.php -------------------------------------------------------------------------------- /Modules/Adjustment/Entities/Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Entities/Adjustment.php -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Routes/api.php -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/Routes/web.php -------------------------------------------------------------------------------- /Modules/Adjustment/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Adjustment/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/composer.json -------------------------------------------------------------------------------- /Modules/Adjustment/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/module.json -------------------------------------------------------------------------------- /Modules/Adjustment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/package.json -------------------------------------------------------------------------------- /Modules/Adjustment/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Adjustment/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Currency/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Currency' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Currency/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/DataTables/CurrencyDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/DataTables/CurrencyDataTable.php -------------------------------------------------------------------------------- /Modules/Currency/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Entities/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Entities/Currency.php -------------------------------------------------------------------------------- /Modules/Currency/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Http/Controllers/CurrencyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Http/Controllers/CurrencyController.php -------------------------------------------------------------------------------- /Modules/Currency/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Providers/CurrencyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Providers/CurrencyServiceProvider.php -------------------------------------------------------------------------------- /Modules/Currency/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Currency/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Currency/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/Currency/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Currency/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Routes/api.php -------------------------------------------------------------------------------- /Modules/Currency/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/Routes/web.php -------------------------------------------------------------------------------- /Modules/Currency/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Currency/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/composer.json -------------------------------------------------------------------------------- /Modules/Currency/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/module.json -------------------------------------------------------------------------------- /Modules/Currency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/package.json -------------------------------------------------------------------------------- /Modules/Currency/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Currency/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Expense/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Expense' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Expense/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/DataTables/ExpenseCategoriesDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/DataTables/ExpenseCategoriesDataTable.php -------------------------------------------------------------------------------- /Modules/Expense/DataTables/ExpensesDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/DataTables/ExpensesDataTable.php -------------------------------------------------------------------------------- /Modules/Expense/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Entities/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Entities/Expense.php -------------------------------------------------------------------------------- /Modules/Expense/Entities/ExpenseCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Entities/ExpenseCategory.php -------------------------------------------------------------------------------- /Modules/Expense/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Http/Controllers/ExpenseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Http/Controllers/ExpenseController.php -------------------------------------------------------------------------------- /Modules/Expense/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Providers/ExpenseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Providers/ExpenseServiceProvider.php -------------------------------------------------------------------------------- /Modules/Expense/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Resources/views/categories/edit.blade.php -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/expenses/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Resources/views/expenses/create.blade.php -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/expenses/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Resources/views/expenses/edit.blade.php -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/expenses/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Resources/views/expenses/index.blade.php -------------------------------------------------------------------------------- /Modules/Expense/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Routes/api.php -------------------------------------------------------------------------------- /Modules/Expense/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/Routes/web.php -------------------------------------------------------------------------------- /Modules/Expense/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Expense/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/composer.json -------------------------------------------------------------------------------- /Modules/Expense/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/module.json -------------------------------------------------------------------------------- /Modules/Expense/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/package.json -------------------------------------------------------------------------------- /Modules/Expense/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Expense/webpack.mix.js -------------------------------------------------------------------------------- /Modules/People/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Config/config.php: -------------------------------------------------------------------------------- 1 | 'People' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/People/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/DataTables/CustomersDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/DataTables/CustomersDataTable.php -------------------------------------------------------------------------------- /Modules/People/DataTables/SuppliersDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/DataTables/SuppliersDataTable.php -------------------------------------------------------------------------------- /Modules/People/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Database/Seeders/PeopleDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Database/Seeders/PeopleDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/People/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /Modules/People/Database/factories/SupplierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Database/factories/SupplierFactory.php -------------------------------------------------------------------------------- /Modules/People/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Entities/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Entities/Customer.php -------------------------------------------------------------------------------- /Modules/People/Entities/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Entities/Supplier.php -------------------------------------------------------------------------------- /Modules/People/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Http/Controllers/CustomersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Http/Controllers/CustomersController.php -------------------------------------------------------------------------------- /Modules/People/Http/Controllers/SuppliersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Http/Controllers/SuppliersController.php -------------------------------------------------------------------------------- /Modules/People/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Providers/PeopleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Providers/PeopleServiceProvider.php -------------------------------------------------------------------------------- /Modules/People/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/People/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Resources/views/customers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/customers/create.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/customers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/customers/edit.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/customers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/customers/index.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/customers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/customers/show.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/suppliers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/suppliers/create.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/suppliers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/suppliers/edit.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/suppliers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/suppliers/index.blade.php -------------------------------------------------------------------------------- /Modules/People/Resources/views/suppliers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Resources/views/suppliers/show.blade.php -------------------------------------------------------------------------------- /Modules/People/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Routes/api.php -------------------------------------------------------------------------------- /Modules/People/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/Routes/web.php -------------------------------------------------------------------------------- /Modules/People/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/People/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/composer.json -------------------------------------------------------------------------------- /Modules/People/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/module.json -------------------------------------------------------------------------------- /Modules/People/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/package.json -------------------------------------------------------------------------------- /Modules/People/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/People/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Product/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Product' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Product/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/DataTables/ProductCategoriesDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/DataTables/ProductCategoriesDataTable.php -------------------------------------------------------------------------------- /Modules/Product/DataTables/ProductDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/DataTables/ProductDataTable.php -------------------------------------------------------------------------------- /Modules/Product/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Entities/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Entities/Category.php -------------------------------------------------------------------------------- /Modules/Product/Entities/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Entities/Product.php -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/BarcodeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Http/Controllers/BarcodeController.php -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Http/Controllers/CategoriesController.php -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Http/Controllers/ProductController.php -------------------------------------------------------------------------------- /Modules/Product/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Http/Requests/StoreProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Http/Requests/StoreProductRequest.php -------------------------------------------------------------------------------- /Modules/Product/Http/Requests/UpdateProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Http/Requests/UpdateProductRequest.php -------------------------------------------------------------------------------- /Modules/Product/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Providers/ProductServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Providers/ProductServiceProvider.php -------------------------------------------------------------------------------- /Modules/Product/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Product/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Resources/views/barcode/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/barcode/index.blade.php -------------------------------------------------------------------------------- /Modules/Product/Resources/views/barcode/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/barcode/print.blade.php -------------------------------------------------------------------------------- /Modules/Product/Resources/views/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/categories/edit.blade.php -------------------------------------------------------------------------------- /Modules/Product/Resources/views/products/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/products/create.blade.php -------------------------------------------------------------------------------- /Modules/Product/Resources/views/products/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/products/edit.blade.php -------------------------------------------------------------------------------- /Modules/Product/Resources/views/products/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Resources/views/products/show.blade.php -------------------------------------------------------------------------------- /Modules/Product/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Routes/api.php -------------------------------------------------------------------------------- /Modules/Product/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/Routes/web.php -------------------------------------------------------------------------------- /Modules/Product/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Product/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/composer.json -------------------------------------------------------------------------------- /Modules/Product/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/module.json -------------------------------------------------------------------------------- /Modules/Product/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/package.json -------------------------------------------------------------------------------- /Modules/Product/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Product/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Purchase/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Purchase' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Purchase/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/DataTables/PurchaseDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/DataTables/PurchaseDataTable.php -------------------------------------------------------------------------------- /Modules/Purchase/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Entities/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Entities/Purchase.php -------------------------------------------------------------------------------- /Modules/Purchase/Entities/PurchaseDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Entities/PurchaseDetail.php -------------------------------------------------------------------------------- /Modules/Purchase/Entities/PurchasePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Entities/PurchasePayment.php -------------------------------------------------------------------------------- /Modules/Purchase/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Http/Requests/StorePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Http/Requests/StorePurchaseRequest.php -------------------------------------------------------------------------------- /Modules/Purchase/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Providers/PurchaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Providers/PurchaseServiceProvider.php -------------------------------------------------------------------------------- /Modules/Purchase/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Resources/views/print.blade.php -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/Purchase/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Routes/api.php -------------------------------------------------------------------------------- /Modules/Purchase/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/Routes/web.php -------------------------------------------------------------------------------- /Modules/Purchase/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Purchase/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/composer.json -------------------------------------------------------------------------------- /Modules/Purchase/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/module.json -------------------------------------------------------------------------------- /Modules/Purchase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/package.json -------------------------------------------------------------------------------- /Modules/Purchase/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Purchase/webpack.mix.js -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Config/config.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Entities/PurchaseReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Entities/PurchaseReturn.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Resources/views/print.blade.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Routes/api.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/Routes/web.php -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/composer.json -------------------------------------------------------------------------------- /Modules/PurchasesReturn/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/module.json -------------------------------------------------------------------------------- /Modules/PurchasesReturn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/package.json -------------------------------------------------------------------------------- /Modules/PurchasesReturn/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/PurchasesReturn/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Quotation/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Quotation' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Quotation/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/DataTables/QuotationsDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/DataTables/QuotationsDataTable.php -------------------------------------------------------------------------------- /Modules/Quotation/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Emails/QuotationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Emails/QuotationMail.php -------------------------------------------------------------------------------- /Modules/Quotation/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Entities/Quotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Entities/Quotation.php -------------------------------------------------------------------------------- /Modules/Quotation/Entities/QuotationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Entities/QuotationDetails.php -------------------------------------------------------------------------------- /Modules/Quotation/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Resources/views/print.blade.php -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/Quotation/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Routes/api.php -------------------------------------------------------------------------------- /Modules/Quotation/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/Routes/web.php -------------------------------------------------------------------------------- /Modules/Quotation/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Quotation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/composer.json -------------------------------------------------------------------------------- /Modules/Quotation/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/module.json -------------------------------------------------------------------------------- /Modules/Quotation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/package.json -------------------------------------------------------------------------------- /Modules/Quotation/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Quotation/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Reports/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Reports' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Reports/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Http/Controllers/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Http/Controllers/ReportsController.php -------------------------------------------------------------------------------- /Modules/Reports/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Providers/ReportsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Providers/ReportsServiceProvider.php -------------------------------------------------------------------------------- /Modules/Reports/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/sales/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Resources/views/sales/index.blade.php -------------------------------------------------------------------------------- /Modules/Reports/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Routes/api.php -------------------------------------------------------------------------------- /Modules/Reports/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/Routes/web.php -------------------------------------------------------------------------------- /Modules/Reports/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Reports/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/composer.json -------------------------------------------------------------------------------- /Modules/Reports/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/module.json -------------------------------------------------------------------------------- /Modules/Reports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/package.json -------------------------------------------------------------------------------- /Modules/Reports/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Reports/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Sale/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Sale' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Sale/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/DataTables/SalePaymentsDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/DataTables/SalePaymentsDataTable.php -------------------------------------------------------------------------------- /Modules/Sale/DataTables/SalesDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/DataTables/SalesDataTable.php -------------------------------------------------------------------------------- /Modules/Sale/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Database/Seeders/SaleDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Database/Seeders/SaleDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/Sale/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Entities/Sale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Entities/Sale.php -------------------------------------------------------------------------------- /Modules/Sale/Entities/SaleDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Entities/SaleDetails.php -------------------------------------------------------------------------------- /Modules/Sale/Entities/SalePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Entities/SalePayment.php -------------------------------------------------------------------------------- /Modules/Sale/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Http/Controllers/PosController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Http/Controllers/PosController.php -------------------------------------------------------------------------------- /Modules/Sale/Http/Controllers/SaleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Http/Controllers/SaleController.php -------------------------------------------------------------------------------- /Modules/Sale/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Http/Requests/StorePosSaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Http/Requests/StorePosSaleRequest.php -------------------------------------------------------------------------------- /Modules/Sale/Http/Requests/StoreSaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Http/Requests/StoreSaleRequest.php -------------------------------------------------------------------------------- /Modules/Sale/Http/Requests/UpdateSaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Http/Requests/UpdateSaleRequest.php -------------------------------------------------------------------------------- /Modules/Sale/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Sale/Providers/SaleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Providers/SaleServiceProvider.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/partials/actions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/partials/actions.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/partials/status.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/payments/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/payments/create.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/payments/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/payments/edit.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/payments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/payments/index.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/pos/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/pos/index.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/print-pos.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/print-pos.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/print.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/Sale/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Routes/api.php -------------------------------------------------------------------------------- /Modules/Sale/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/Routes/web.php -------------------------------------------------------------------------------- /Modules/Sale/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Sale/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/composer.json -------------------------------------------------------------------------------- /Modules/Sale/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/module.json -------------------------------------------------------------------------------- /Modules/Sale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/package.json -------------------------------------------------------------------------------- /Modules/Sale/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Sale/webpack.mix.js -------------------------------------------------------------------------------- /Modules/SalesReturn/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Config/config.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/DataTables/SaleReturnsDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/DataTables/SaleReturnsDataTable.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Entities/SaleReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Entities/SaleReturn.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Entities/SaleReturnDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Entities/SaleReturnDetail.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Entities/SaleReturnPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Entities/SaleReturnPayment.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Resources/views/edit.blade.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Resources/views/print.blade.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Resources/views/show.blade.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Routes/api.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/Routes/web.php -------------------------------------------------------------------------------- /Modules/SalesReturn/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SalesReturn/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/composer.json -------------------------------------------------------------------------------- /Modules/SalesReturn/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/module.json -------------------------------------------------------------------------------- /Modules/SalesReturn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/package.json -------------------------------------------------------------------------------- /Modules/SalesReturn/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/SalesReturn/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Setting/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Setting' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Setting/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Entities/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Entities/Setting.php -------------------------------------------------------------------------------- /Modules/Setting/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Http/Controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Http/Controllers/SettingController.php -------------------------------------------------------------------------------- /Modules/Setting/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Http/Requests/StoreSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Http/Requests/StoreSettingsRequest.php -------------------------------------------------------------------------------- /Modules/Setting/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Setting/Providers/SettingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Providers/SettingServiceProvider.php -------------------------------------------------------------------------------- /Modules/Setting/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Setting/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Routes/api.php -------------------------------------------------------------------------------- /Modules/Setting/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/Routes/web.php -------------------------------------------------------------------------------- /Modules/Setting/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Setting/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/composer.json -------------------------------------------------------------------------------- /Modules/Setting/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/module.json -------------------------------------------------------------------------------- /Modules/Setting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/package.json -------------------------------------------------------------------------------- /Modules/Setting/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Setting/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Upload/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Upload' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Upload/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Entities/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Entities/Upload.php -------------------------------------------------------------------------------- /Modules/Upload/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Http/Controllers/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Http/Controllers/UploadController.php -------------------------------------------------------------------------------- /Modules/Upload/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Upload/Providers/UploadServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Providers/UploadServiceProvider.php -------------------------------------------------------------------------------- /Modules/Upload/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Routes/api.php -------------------------------------------------------------------------------- /Modules/Upload/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/Routes/web.php -------------------------------------------------------------------------------- /Modules/Upload/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Upload/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/composer.json -------------------------------------------------------------------------------- /Modules/Upload/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/module.json -------------------------------------------------------------------------------- /Modules/Upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/package.json -------------------------------------------------------------------------------- /Modules/Upload/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/Upload/webpack.mix.js -------------------------------------------------------------------------------- /Modules/User/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Config/config.php: -------------------------------------------------------------------------------- 1 | 'User' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/User/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/DataTables/RolesDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/DataTables/RolesDataTable.php -------------------------------------------------------------------------------- /Modules/User/DataTables/UsersDataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/DataTables/UsersDataTable.php -------------------------------------------------------------------------------- /Modules/User/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Database/Seeders/UserDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Database/Seeders/UserDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/User/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /Modules/User/Http/Controllers/RolesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Http/Controllers/RolesController.php -------------------------------------------------------------------------------- /Modules/User/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Http/Controllers/UsersController.php -------------------------------------------------------------------------------- /Modules/User/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/User/Providers/UserServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Providers/UserServiceProvider.php -------------------------------------------------------------------------------- /Modules/User/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Resources/views/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/profile.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/roles/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/roles/create.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/roles/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/roles/edit.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/roles/index.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/users/create.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/users/edit.blade.php -------------------------------------------------------------------------------- /Modules/User/Resources/views/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Resources/views/users/index.blade.php -------------------------------------------------------------------------------- /Modules/User/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Routes/api.php -------------------------------------------------------------------------------- /Modules/User/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Routes/web.php -------------------------------------------------------------------------------- /Modules/User/Rules/MatchCurrentPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/Rules/MatchCurrentPassword.php -------------------------------------------------------------------------------- /Modules/User/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/User/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/composer.json -------------------------------------------------------------------------------- /Modules/User/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/module.json -------------------------------------------------------------------------------- /Modules/User/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/package.json -------------------------------------------------------------------------------- /Modules/User/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/Modules/User/webpack.mix.js -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Helpers/helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/Adjustment/ProductTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Adjustment/ProductTable.php -------------------------------------------------------------------------------- /app/Http/Livewire/Barcode/ProductTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Barcode/ProductTable.php -------------------------------------------------------------------------------- /app/Http/Livewire/Pos/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Pos/Checkout.php -------------------------------------------------------------------------------- /app/Http/Livewire/Pos/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Pos/Filter.php -------------------------------------------------------------------------------- /app/Http/Livewire/Pos/ProductList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Pos/ProductList.php -------------------------------------------------------------------------------- /app/Http/Livewire/ProductCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/ProductCart.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/PaymentsReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/PaymentsReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/ProfitLossReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/ProfitLossReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/PurchasesReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/PurchasesReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/PurchasesReturnReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/PurchasesReturnReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/SalesReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/SalesReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reports/SalesReturnReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/Reports/SalesReturnReport.php -------------------------------------------------------------------------------- /app/Http/Livewire/SearchProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Livewire/SearchProduct.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/cart.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/datatables-buttons.php -------------------------------------------------------------------------------- /config/datatables-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/datatables-html.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/session.php -------------------------------------------------------------------------------- /config/snappy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/snappy.php -------------------------------------------------------------------------------- /config/sweetalert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/sweetalert.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/SuperUserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/database/seeders/SuperUserSeeder.php -------------------------------------------------------------------------------- /modules_statuses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/modules_statuses.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/b3/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/b3/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/css/dropzone.css -------------------------------------------------------------------------------- /public/css/select2-coreui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/css/select2-coreui.min.css -------------------------------------------------------------------------------- /public/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/css/select2.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.svg -------------------------------------------------------------------------------- /public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/fonts/vendor/@coreui/icons/CoreUI-Icons-Free.ttf -------------------------------------------------------------------------------- /public/images/fallback_product_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/fallback_product_image.png -------------------------------------------------------------------------------- /public/images/fallback_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/fallback_profile_image.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/logo-dark.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/screenshot.jpg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ad.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ae.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-af.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ag.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-al.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-al.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-am.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ao.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ar.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-at.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-au.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-az.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-az.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ba.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bb.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bd.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-be.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bf.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bh.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bi.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bj.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bo.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-br.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bs.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-by.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-bz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ca.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cd.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cf.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ch.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ci.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cl.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-co.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cu.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cv.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cy.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-cz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-de.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-dj.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-dk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-dm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-do.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-dz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ec.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ee.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-eg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-eg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-er.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-es.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-et.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-fi.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-fj.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-fm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-fr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ga.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gb.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gd.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ge.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gh.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gq.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-gy.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-hk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-hk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-hn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-hn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-hr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ht.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-hu.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-id.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ie.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-il.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-il.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-in.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-iq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-iq.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ir.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-is.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-it.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-jm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-jo.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-jp.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ke.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kh.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ki.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-km.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kp.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-kz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-la.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lb.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lc.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-li.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ls.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lu.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-lv.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ly.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ma.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mc.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-md.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-me.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mh.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ml.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mu.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mv.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mx.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-my.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-mz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-na.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ne.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ng.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ni.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-nl.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-no.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-np.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-np.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-nr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-nu.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-nz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-om.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pa.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pe.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ph.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pl.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-pw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-py.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-qa.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ro.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-rs.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ru.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-rw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-rw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sa.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sb.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sc.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sd.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-se.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-si.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sl.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-so.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-so.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ss.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-st.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sv.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sy.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-sz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-td.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-td.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tg.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-th.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tj.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tl.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-to.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tr.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tt.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tv.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tw.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-tz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ua.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ug.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-us.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-uy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-uy.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-uz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-uz.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-va.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-vc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-vc.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ve.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-vn.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ws.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-xk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-xk.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-ye.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-za.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-za.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-zm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-zm.svg -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-zw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/images/vendor/@coreui/icons/svg/flag/cif-zw.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/chart-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/chart-config.js -------------------------------------------------------------------------------- /public/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/dropzone.js -------------------------------------------------------------------------------- /public/js/jquery-mask-money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/jquery-mask-money.js -------------------------------------------------------------------------------- /public/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/js/select2.min.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/datatables/buttons.server-side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/vendor/datatables/buttons.server-side.js -------------------------------------------------------------------------------- /public/vendor/sweetalert/sweetalert.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/vendor/sweetalert/sweetalert.all.js -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/chart-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/js/chart-config.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/lang/en/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/illustrated-layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/errors/illustrated-layout.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/includes/filepond-css.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/includes/filepond-css.blade.php -------------------------------------------------------------------------------- /resources/views/includes/filepond-js.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/includes/filepond-js.blade.php -------------------------------------------------------------------------------- /resources/views/includes/main-css.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/includes/main-css.blade.php -------------------------------------------------------------------------------- /resources/views/includes/main-js.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/includes/main-js.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/layouts/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/layouts/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/layouts/menu.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pos/checkout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/pos/checkout.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pos/filter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/pos/filter.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pos/product-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/pos/product-list.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/product-cart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/product-cart.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/reports/sales-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/reports/sales-report.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/search-product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/livewire/search-product.blade.php -------------------------------------------------------------------------------- /resources/views/utils/alerts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/utils/alerts.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/datatables/editor.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/function.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/datatables/function.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/options.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/datatables/options.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/datatables/print.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/script.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/datatables/script.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/sweetalert/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/resources/views/vendor/sweetalert/alert.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/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/iqbalhasandev/tera-pos/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalhasandev/tera-pos/HEAD/webpack.mix.js --------------------------------------------------------------------------------