├── .dockerignore ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── Dockerfile ├── 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 │ │ │ ├── includes │ │ │ └── category-modal.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 │ │ │ └── 2023_07_01_184221_create_units_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── SettingDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Setting.php │ │ └── Unit.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── SettingController.php │ │ │ └── UnitsController.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 │ │ │ └── units │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── 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 │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.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 ├── 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 ├── livewire.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 ├── docker-compose.yaml ├── docker-startup.sh ├── modules_statuses.json ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── b3 │ └── bootstrap.min.css ├── build │ ├── assets │ │ ├── app-296d3b42.css │ │ ├── app-4bd38d4a.js │ │ └── chart-config-5c99e0a8.js │ └── manifest.json ├── 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-price.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 └── vite.config.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | /.idea 15 | /.vscode 16 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | DirectoryIndex index.php 2 | 3 | RewriteEngine On 4 | RewriteRule ^$ public/index.php [L] 5 | RewriteRule ^((?!public/).*)$ public/$1 [L,NC] 6 | 7 | # php -- BEGIN cPanel-generated handler, do not edit 8 | # Set the “ea-php74” package as the default “PHP” programming language. 9 | 10 | AddHandler application/x-httpd-ea-php74 .php .php7 .phtml 11 | 12 | # php -- END cPanel-generated handler, do not edit 13 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.1 2 | 3 | WORKDIR /app 4 | 5 | RUN apt-get update && apt-get install -y \ 6 | libzip-dev \ 7 | zip \ 8 | git 9 | 10 | # Install php extensions 11 | RUN docker-php-ext-install mysqli pdo pdo_mysql 12 | 13 | RUN apt-get clean && rm -rf /var/lib/apt/lists/* 14 | 15 | # Install composer 16 | RUN curl -sS https://getcomposer.org/installer | php -- \ 17 | --install-dir=/usr/bin --filename=composer 18 | 19 | COPY . /app 20 | 21 | RUN composer install --ignore-platform-reqs 22 | 23 | # Give execute permission to startup script 24 | RUN chmod +x /app/docker-startup.sh 25 | 26 | ENTRYPOINT [ "/app/docker-startup.sh" ] 27 | 28 | -------------------------------------------------------------------------------- /Modules/Adjustment/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Adjustment' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Adjustment/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Database/Seeders/AdjustmentDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Adjustment/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Entities/AdjustedProduct.php: -------------------------------------------------------------------------------- 1 | belongsTo(Adjustment::class, 'adjustment_id', 'id'); 19 | } 20 | 21 | public function product() { 22 | return $this->belongsTo(Product::class, 'product_id', 'id'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/adjustment', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Adjustment/Routes/web.php: -------------------------------------------------------------------------------- 1 | 'auth'], function () { 15 | //Product Adjustment 16 | Route::resource('adjustments', 'AdjustmentController'); 17 | }); 18 | -------------------------------------------------------------------------------- /Modules/Adjustment/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Adjustment/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Adjustment/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/adjustment", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Adjustment\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Adjustment/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adjustment", 3 | "alias": "adjustment", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Adjustment\\Providers\\AdjustmentServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Adjustment/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/adjustment.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/adjustment.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Currency/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Currency' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Currency/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Entities/Currency.php: -------------------------------------------------------------------------------- 1 | get('/currency', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Currency/Routes/web.php: -------------------------------------------------------------------------------- 1 | 'auth'], function () { 15 | 16 | Route::resource('currencies', 'CurrencyController')->except('show'); 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /Modules/Currency/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Currency/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Currency/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/currency", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Currency\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Currency/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Currency", 3 | "alias": "currency", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Currency\\Providers\\CurrencyServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Currency/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/currency.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/currency.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Expense/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Expense' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Expense/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Database/Seeders/ExpenseDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Expense/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Entities/ExpenseCategory.php: -------------------------------------------------------------------------------- 1 | hasMany(Expense::class, 'category_id', 'id'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Modules/Expense/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Expense/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Expense/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/expense', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Expense/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Expense/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Expense/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/expense", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Expense\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Expense/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Expense", 3 | "alias": "expense", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Expense\\Providers\\ExpenseServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Expense/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/expense.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/expense.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/People/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Config/config.php: -------------------------------------------------------------------------------- 1 | 'People' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/People/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Database/Seeders/PeopleDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | count(15)->create(); 20 | Supplier::factory()->count(6)->create(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Modules/People/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Entities/Customer.php: -------------------------------------------------------------------------------- 1 | get('/people', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/People/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/People/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/People/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/People/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/people", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\People\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/People/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "People", 3 | "alias": "people", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\People\\Providers\\PeopleServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/People/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/people.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/people.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Product/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Product' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Product/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Entities/Category.php: -------------------------------------------------------------------------------- 1 | hasMany(Product::class, 'category_id', 'id'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Http/Controllers/BarcodeController.php: -------------------------------------------------------------------------------- 1 | get('/product', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Product/Routes/web.php: -------------------------------------------------------------------------------- 1 | 'auth'], function () { 10 | //Print Barcode 11 | Route::get('/products/print-barcode', 'BarcodeController@printBarcode')->name('barcode.print'); 12 | //Product 13 | Route::resource('products', 'ProductController'); 14 | //Product Category 15 | Route::resource('product-categories', 'CategoriesController')->except('create', 'show'); 16 | }); 17 | 18 | -------------------------------------------------------------------------------- /Modules/Product/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Product/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Product/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/product", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Product\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Product/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product", 3 | "alias": "product", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Product\\Providers\\ProductServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Product/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/product.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/product.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Purchase/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Purchase' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Purchase/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Database/Seeders/PurchaseDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Purchase/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Purchase/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Purchase/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/partials/payment-status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->payment_status == 'Partial') 2 | 3 | {{ $data->payment_status }} 4 | 5 | @elseif ($data->payment_status == 'Paid') 6 | 7 | {{ $data->payment_status }} 8 | 9 | @else 10 | 11 | {{ $data->payment_status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/Purchase/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->status == 'Pending') 2 | 3 | {{ $data->status }} 4 | 5 | @elseif ($data->status == 'Ordered') 6 | 7 | {{ $data->status }} 8 | 9 | @else 10 | 11 | {{ $data->status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/Purchase/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/purchase', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Purchase/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Purchase/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Purchase/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/purchase", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Purchase\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Purchase/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Purchase", 3 | "alias": "purchase", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Purchase\\Providers\\PurchaseServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Purchase/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/purchase.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/purchase.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Config/config.php: -------------------------------------------------------------------------------- 1 | 'PurchasesReturn' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/Seeders/PurchasesReturnDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/partials/payment-status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->payment_status == 'Partial') 2 | 3 | {{ $data->payment_status }} 4 | 5 | @elseif ($data->payment_status == 'Paid') 6 | 7 | {{ $data->payment_status }} 8 | 9 | @else 10 | 11 | {{ $data->payment_status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->status == 'Pending') 2 | 3 | {{ $data->status }} 4 | 5 | @elseif ($data->status == 'Shipped') 6 | 7 | {{ $data->status }} 8 | 9 | @else 10 | 11 | {{ $data->status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/purchasesreturn', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/PurchasesReturn/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/PurchasesReturn/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/purchasesreturn", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\PurchasesReturn\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PurchasesReturn", 3 | "alias": "purchasesreturn", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\PurchasesReturn\\Providers\\PurchasesReturnServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/PurchasesReturn/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/purchasesreturn.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/purchasesreturn.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Quotation/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Quotation' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Quotation/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Database/Seeders/QuotationDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Quotation/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Quotation/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Quotation/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->status == 'Pending') 2 | 3 | {{ $data->status }} 4 | 5 | @else 6 | 7 | {{ $data->status }} 8 | 9 | @endif 10 | -------------------------------------------------------------------------------- /Modules/Quotation/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/quotation', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Quotation/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Quotation/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Quotation/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/quotation", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Quotation\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Quotation/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Quotation", 3 | "alias": "quotation", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Quotation\\Providers\\QuotationServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Quotation/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/quotation.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/quotation.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Reports/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Reports' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Reports/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Database/Seeders/ReportsDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Reports/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Reports/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Reports/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/payments/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Payments Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/profit-loss/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Profit / Loss Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/purchases-return/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Purchases Return Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/purchases/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Purchases Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/sales-return/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Sales Return Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Resources/views/sales/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title', 'Sales Report') 4 | 5 | @section('breadcrumb') 6 | 10 | @endsection 11 | 12 | @section('content') 13 |
14 | 15 |
16 | @endsection 17 | -------------------------------------------------------------------------------- /Modules/Reports/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/reports', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Reports/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Reports/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Reports/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/reports", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Reports\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Reports/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Reports", 3 | "alias": "reports", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Reports\\Providers\\ReportsServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Reports/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/reports.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/reports.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Sale/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Sale' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Sale/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Database/Seeders/SaleDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Sale/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Sale/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Sale/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/partials/payment-status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->payment_status == 'Partial') 2 | 3 | {{ $data->payment_status }} 4 | 5 | @elseif ($data->payment_status == 'Paid') 6 | 7 | {{ $data->payment_status }} 8 | 9 | @else 10 | 11 | {{ $data->payment_status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/Sale/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->status == 'Pending') 2 | 3 | {{ $data->status }} 4 | 5 | @elseif ($data->status == 'Shipped') 6 | 7 | {{ $data->status }} 8 | 9 | @else 10 | 11 | {{ $data->status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/Sale/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/sale', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Sale/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Sale/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Sale/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/sale", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Sale\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Sale/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sale", 3 | "alias": "sale", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Sale\\Providers\\SaleServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Sale/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/sale.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/sale.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Config/config.php: -------------------------------------------------------------------------------- 1 | 'SalesReturn' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/Seeders/SalesReturnDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/partials/payment-status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->payment_status == 'Partial') 2 | 3 | {{ $data->payment_status }} 4 | 5 | @elseif ($data->payment_status == 'Paid') 6 | 7 | {{ $data->payment_status }} 8 | 9 | @else 10 | 11 | {{ $data->payment_status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Resources/views/partials/status.blade.php: -------------------------------------------------------------------------------- 1 | @if ($data->status == 'Pending') 2 | 3 | {{ $data->status }} 4 | 5 | @elseif ($data->status == 'Shipped') 6 | 7 | {{ $data->status }} 8 | 9 | @else 10 | 11 | {{ $data->status }} 12 | 13 | @endif 14 | -------------------------------------------------------------------------------- /Modules/SalesReturn/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/salesreturn', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/SalesReturn/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/SalesReturn/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/SalesReturn/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/salesreturn", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\SalesReturn\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/SalesReturn/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SalesReturn", 3 | "alias": "salesreturn", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\SalesReturn\\Providers\\SalesReturnServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/SalesReturn/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/salesreturn.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/salesreturn.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Setting/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Setting' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Setting/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Entities/Setting.php: -------------------------------------------------------------------------------- 1 | belongsTo(Currency::class, 'default_currency_id', 'id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Modules/Setting/Entities/Unit.php: -------------------------------------------------------------------------------- 1 | get('/setting', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /Modules/Setting/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Setting/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/setting", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Setting\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Setting/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Setting", 3 | "alias": "setting", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Setting\\Providers\\SettingServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Setting/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/setting.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/setting.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Upload/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Upload' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Upload/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Database/Seeders/UploadDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Upload/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Entities/Upload.php: -------------------------------------------------------------------------------- 1 | get('/upload', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Upload/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/Upload/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Upload/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/upload", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Upload\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Upload/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Upload", 3 | "alias": "upload", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Upload\\Providers\\UploadServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Upload/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/upload.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/upload.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/User/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Config/config.php: -------------------------------------------------------------------------------- 1 | 'User' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/User/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Database/Seeders/UserDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(PermissionsTableSeeder::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Modules/User/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/User/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/User/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Resources/views/roles/partials/permissions.blade.php: -------------------------------------------------------------------------------- 1 | @foreach($data->getPermissionNames() as $permission) 2 | {{ $permission }} 3 | @endforeach 4 | ....... 5 | -------------------------------------------------------------------------------- /Modules/User/Resources/views/users/partials/roles.blade.php: -------------------------------------------------------------------------------- 1 | @foreach($roles as $role) 2 | {{ $role }} 3 | @endforeach 4 | -------------------------------------------------------------------------------- /Modules/User/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/setting', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/User/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/User/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahimAnzamDip/triangle-pos/e6bb4fe9addb868577abf67ddb0c9a0d5d91ef80/Modules/User/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/User/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/user", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\User\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/User/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "User", 3 | "alias": "user", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\User\\Providers\\UserServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/User/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/setting.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/setting.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | isProduction()); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-am.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-at.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-az.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-be.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-bw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ci.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-co.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-cz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-de.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-dk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-fr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ga.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-gy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-hu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-id.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-il.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-is.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-it.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-jp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-kw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-la.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-lv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ml.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-mv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ne.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ng.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-no.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-nr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-pw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-qa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ru.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-se.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-so.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-st.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-sy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-td.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-th.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-to.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-tt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ua.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-vc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-vn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ws.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/vendor/@coreui/icons/svg/flag/cif-ye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/js/chart-config.js": "/js/chart-config.js", 4 | "/css/app.css": "/css/app.css" 5 | } 6 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap.js'; 2 | import '@coreui/coreui/dist/js/coreui.bundle.min.js'; 3 | 4 | $(function () { 5 | $('[data-toggle="tooltip"]').tooltip() 6 | }) 7 | 8 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | import Popper from "popper.js"; 2 | import * as bootstrap from 'bootstrap'; 3 | 4 | /** 5 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support 6 | * for JavaScript based Bootstrap features such as modals and tabs. This 7 | * code may be modified to fit the specific needs of your application. 8 | */ 9 | 10 | try { 11 | window.Popper = Popper; 12 | } catch (e) { 13 | console.log(e); 14 | } 15 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.illustrated-layout') 2 | 3 | @section('code', '403 🤐') 4 | 5 | @section('title', __('Unauthorized')) 6 | 7 | @section('image') 8 |
9 | @endsection 10 | 11 | @section('message', __('Sorry, you don\'t have the permission to visit this page.')) 12 | -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.illustrated-layout') 2 | 3 | @section('code', '404 😵') 4 | 5 | @section('title', __('Page Not Found')) 6 | 7 | @section('image') 8 |
9 | @endsection 10 | 11 | @section('message', __('Sorry, the page you are looking for could not be found.')) 12 | -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.illustrated-layout') 2 | 3 | @section('code', '419 👾') 4 | 5 | @section('title', __('Page Expired')) 6 | 7 | @section('image') 8 |
9 | @endsection 10 | 11 | @section('message', __('Maybe, the CSRF token is missing.')) 12 | -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.illustrated-layout') 2 | 3 | @section('code', '500 🤕') 4 | 5 | @section('title', __('Server Error')) 6 | 7 | @section('image') 8 |
9 | @endsection 10 | 11 | @section('message', __('Something went wrong. Call the dev!!!')) 12 | -------------------------------------------------------------------------------- /resources/views/includes/filepond-css.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/livewire/includes/product-cart-price.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /resources/views/livewire/includes/product-cart-quantity.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /resources/views/utils/alerts.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 | @foreach($errors->all() as $error) 3 | 11 | @endforeach 12 | @endif 13 | -------------------------------------------------------------------------------- /resources/views/vendor/datatables/options.blade.php: -------------------------------------------------------------------------------- 1 | window.{{ config('datatables-html.namespace', 'LaravelDataTables') }} = window.{{ config('datatables-html.namespace', 'LaravelDataTables') }} || {}; 2 | window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}.options = %2$s 3 | window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}.editors = []; 4 | @foreach($editors as $editor) 5 | window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}.editors["{{$editor->instance}}"] = {!! $editor->toJson() !!} 6 | @endforeach 7 | -------------------------------------------------------------------------------- /resources/views/vendor/datatables/script.blade.php: -------------------------------------------------------------------------------- 1 | $(function(){window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}=window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}||{};window.{{ config('datatables-html.namespace', 'LaravelDataTables') }}["%1$s"]=$("#%1$s").DataTable(%2$s);}); 2 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | laravel([ 7 | 'resources/sass/app.scss', 8 | 'resources/js/app.js', 9 | 'resources/js/chart-config.js', 10 | ]), 11 | ], 12 | }); 13 | --------------------------------------------------------------------------------