├── .editorconfig ├── .env.ci ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── Console │ └── Commands │ │ ├── BackupCommand.php │ │ ├── GenerateApiController.php │ │ └── GenerateProperty.php ├── Enums │ ├── BackupSchedule.php │ ├── MovementType.php │ ├── PaymentStatus.php │ ├── PurchaseReturnStatus.php │ ├── PurchaseStatus.php │ ├── QuotationStatus.php │ ├── SaleReturnStatus.php │ ├── SaleStatus.php │ ├── ShippingStatus.php │ ├── Status.php │ └── UnitType.php ├── Exports │ ├── CategoriesExport.php │ ├── CustomerExport.php │ ├── ExpenseExport.php │ ├── ForModelsTrait.php │ ├── ProductExport.php │ ├── PurchaseExport.php │ ├── SaleExport.php │ └── SupplierExport.php ├── Helpers │ ├── GitHandler.php │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── AuthController.php │ │ │ ├── BaseController.php │ │ │ ├── CategoryController.php │ │ │ ├── CustomerController.php │ │ │ ├── ExpenseController.php │ │ │ ├── ProductController.php │ │ │ ├── RoleController.php │ │ │ ├── SupplierController.php │ │ │ ├── UserController.php │ │ │ └── WarehouseController.php │ │ ├── Auth │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ ├── ExportController.php │ │ ├── HomeController.php │ │ ├── IntegrationController.php │ │ ├── ProductController.php │ │ ├── PurchasePaymentsController.php │ │ ├── PurchaseReturnPaymentsController.php │ │ ├── PurchasesReturnController.php │ │ ├── QuotationController.php │ │ ├── QuotationSalesController.php │ │ ├── ReportsController.php │ │ ├── SalesReturnController.php │ │ └── SendQuotationEmailController.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── Locale.php │ │ └── RedirectIfAuthenticated.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── StorePurchaseRequest.php │ │ ├── StorePurchaseReturnRequest.php │ │ ├── StoreQuotationRequest.php │ │ ├── StoreSaleRequest.php │ │ ├── StoreSaleReturnRequest.php │ │ ├── StoreSmtpSettingsRequest.php │ │ ├── UpdatePurchaseRequest.php │ │ ├── UpdatePurchaseReturnRequest.php │ │ ├── UpdateQuotationRequest.php │ │ ├── UpdateSaleRequest.php │ │ └── UpdateSaleReturnRequest.php │ ├── Resources │ │ ├── CategoryResource.php │ │ ├── CustomerResource.php │ │ ├── ExpenseResource.php │ │ ├── ProductCollection.php │ │ ├── ProductResource.php │ │ ├── ProductWarehouseResource.php │ │ ├── PurchaseResource.php │ │ ├── QuotationResource.php │ │ ├── RoleResource.php │ │ ├── SalePaymentResource.php │ │ ├── SaleResource.php │ │ ├── SupplierResource.php │ │ ├── UserResource.php │ │ └── WarehouseResource.php │ └── Services │ │ └── Contracts │ │ ├── FilterCountInterface.php │ │ ├── FilterDateInterface.php │ │ ├── FilterInterface.php │ │ └── FilterSumInterface.php ├── Imports │ ├── BrandsImport.php │ ├── CategoriesImport.php │ ├── CustomerImport.php │ ├── ExpenseImport.php │ ├── ProductImport.php │ ├── PurchaseImport.php │ ├── SaleImport.php │ └── SupplierImport.php ├── Jobs │ ├── ImportJob.php │ ├── PaymentNotification.php │ ├── UnderMaintenanceJob.php │ └── UpdateProductCostHistory.php ├── Livewire │ ├── Actions │ │ └── Logout.php │ ├── Adjustment │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── ProductTable.php │ │ └── Show.php │ ├── Auth │ │ ├── ConfirmPassword.php │ │ ├── ForgotPassword.php │ │ ├── Login.php │ │ ├── Passwords │ │ │ ├── Confirm.php │ │ │ ├── Email.php │ │ │ └── Reset.php │ │ ├── Register.php │ │ ├── ResetPassword.php │ │ └── Verify.php │ ├── Backup │ │ └── Index.php │ ├── Brands │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ └── Show.php │ ├── Calculator.php │ ├── CashRegister │ │ ├── Create.php │ │ ├── Index.php │ │ └── Show.php │ ├── Categories │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Import.php │ │ └── Index.php │ ├── Currency │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ └── Show.php │ ├── CustomerGroup │ │ ├── CatalogPrint.php │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── Customers │ │ ├── Create.php │ │ ├── Details.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── PayDue.php │ │ └── Show.php │ ├── Dashboard.php │ ├── Email │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── Expense │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── ExpenseCategories │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── Forms │ │ └── LoginForm.php │ ├── Language │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── EditTranslation.php │ │ └── Index.php │ ├── Notification │ │ └── Index.php │ ├── Permission │ │ └── Index.php │ ├── Pos │ │ └── Index.php │ ├── Printer │ │ ├── Create.php │ │ └── Index.php │ ├── Products │ │ ├── Barcode.php │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Highlighted.php │ │ ├── Import.php │ │ ├── Index.php │ │ ├── ProductOptions.php │ │ ├── PromoPrices.php │ │ └── Show.php │ ├── Purchase │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── Invoice.php │ │ ├── Payment │ │ │ └── Index.php │ │ ├── PaymentForm.php │ │ └── Show.php │ ├── PurchaseReturn │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ └── Show.php │ ├── Quotations │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ └── Show.php │ ├── Reports │ │ ├── CustomersReport.php │ │ ├── PaymentsReport.php │ │ ├── ProductReport.php │ │ ├── ProfitLossReport.php │ │ ├── PurchasesReport.php │ │ ├── PurchasesReturnReport.php │ │ ├── SalesReport.php │ │ ├── SalesReturnReport.php │ │ ├── StockAlertReport.php │ │ ├── SuppliersReport.php │ │ └── WarehouseReport.php │ ├── Role │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── SaleReturn │ │ └── Index.php │ ├── Sales │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── Invoice.php │ │ ├── Payment │ │ │ └── Index.php │ │ ├── PaymentForm.php │ │ ├── Recent.php │ │ ├── Show.php │ │ └── SyncOrders.php │ ├── Settings │ │ ├── Index.php │ │ ├── InvoiceTheme.php │ │ ├── Languages.php │ │ ├── MaintenanceMode.php │ │ ├── Messaging.php │ │ ├── Smtp.php │ │ └── Update.php │ ├── Shipping │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ ├── Stats │ │ └── Transactions.php │ ├── Suppliers │ │ ├── Create.php │ │ ├── Details.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── PayDue.php │ │ └── Show.php │ ├── Transfer │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ └── Show.php │ ├── Users │ │ ├── Create.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── Profile.php │ │ └── Show.php │ ├── Utils │ │ ├── Cache.php │ │ ├── Calculator.php │ │ ├── ColorPicker.php │ │ ├── Datatable.php │ │ ├── EditorJs.php │ │ ├── HasDateFilter.php │ │ ├── HasDelete.php │ │ ├── Livesearch.php │ │ ├── Logs.php │ │ ├── Meta.php │ │ ├── Notifications.php │ │ ├── ProductCart.php │ │ ├── QrGenerator.php │ │ ├── QueueMonitor │ │ │ └── Index.php │ │ ├── SearchProduct.php │ │ ├── Sidebar.php │ │ ├── ToggleButton.php │ │ └── WithModels.php │ ├── Warehouses │ │ ├── Create.php │ │ ├── Edit.php │ │ └── Index.php │ └── WithSorting.php ├── Mail │ ├── PaymentPurchaseMail.php │ ├── PaymentReturnMail.php │ ├── PaymentSaleMail.php │ ├── PurchaseMail.php │ ├── QuotationMail.php │ ├── ReturnPurchaseMail.php │ ├── ReturnSaleMail.php │ └── SaleMail.php ├── Models │ ├── AdjustedProduct.php │ ├── Adjustment.php │ ├── Brand.php │ ├── CashRegister.php │ ├── Category.php │ ├── Currency.php │ ├── Customer.php │ ├── CustomerGroup.php │ ├── EmailTemplate.php │ ├── Expense.php │ ├── ExpenseCategory.php │ ├── Invoice.php │ ├── Language.php │ ├── Movement.php │ ├── Permission.php │ ├── PriceHistory.php │ ├── Printer.php │ ├── Product.php │ ├── ProductAttribute.php │ ├── ProductWarehouse.php │ ├── Purchase.php │ ├── PurchaseDetail.php │ ├── PurchasePayment.php │ ├── PurchaseReturn.php │ ├── PurchaseReturnDetail.php │ ├── PurchaseReturnPayment.php │ ├── Quotation.php │ ├── QuotationDetails.php │ ├── Role.php │ ├── Sale.php │ ├── SaleDetails.php │ ├── SalePayment.php │ ├── SaleReturn.php │ ├── SaleReturnDetail.php │ ├── SaleReturnPayment.php │ ├── Setting.php │ ├── Shipment.php │ ├── Shipping.php │ ├── Supplier.php │ ├── Transfer.php │ ├── TransferDetails.php │ ├── User.php │ ├── UserWarehouse.php │ └── Warehouse.php ├── Notifications │ ├── PaymentDue.php │ └── ProductTelegram.php ├── Observers │ ├── ProductObserver.php │ └── SettingsObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── VoltServiceProvider.php ├── Rules │ └── MatchCurrentPassword.php ├── Scopes │ ├── ProductScope.php │ └── SaleScope.php ├── Support │ ├── FilterQueryBuilder.php │ └── HasAdvancedFilter.php ├── Traits │ ├── CacheCleaner.php │ ├── Datatable.php │ ├── GetModelByUuid.php │ ├── HasGlobalDate.php │ ├── HasUuid.php │ ├── LazySpinner.php │ ├── Trashed.php │ ├── UuidGenerator.php │ └── WithAlert.php └── View │ └── Components │ ├── ApexCharts.php │ ├── AppLayout.php │ ├── Card.php │ ├── Content.php │ ├── DatePicker.php │ ├── Dropzone.php │ ├── GuestLayout.php │ ├── LanguageDropdown.php │ ├── SelectList.php │ ├── Sidebar.php │ ├── Table.php │ └── ToggleButton.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cart.php ├── database.php ├── debugbar.php ├── excel.php ├── filesystems.php ├── hashing.php ├── insights.php ├── invoices.php ├── laravel-translatable-string-exporter.php ├── livewire.php ├── logging.php ├── mail.php ├── pdf.php ├── permission.php ├── project.php ├── queue.php ├── reverb.php ├── sentry.php ├── services.php ├── session.php └── sweetalert.php ├── database ├── .gitignore ├── factories │ ├── BrandFactory.php │ ├── CategoryFactory.php │ ├── CurrencyFactory.php │ ├── CustomerFactory.php │ ├── ExpenseCategoryFactory.php │ ├── ProductFactory.php │ ├── PurchaseFactory.php │ ├── SaleFactory.php │ ├── SupplierFactory.php │ ├── UserFactory.php │ └── WarehouseFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2020_06_14_194929_create_cache_table.php │ ├── 2021_03_08_020247_create_brands_table.php │ ├── 2021_03_08_020247_create_warehouses_table.php │ ├── 2021_03_22_132743_create_cash_registers_table.php │ ├── 2021_07_14_145038_create_categories_table.php │ ├── 2021_07_14_145047_create_products_table.php │ ├── 2021_07_22_003941_create_adjustments_table.php │ ├── 2021_07_22_004043_create_adjusted_products_table.php │ ├── 2021_07_28_192608_create_expense_categories_table.php │ ├── 2021_07_28_192616_create_expenses_table.php │ ├── 2021_07_29_165419_create_customers_table.php │ ├── 2021_07_29_165440_create_suppliers_table.php │ ├── 2021_07_31_015923_create_currencies_table.php │ ├── 2021_07_31_140531_create_settings_table.php │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 2021_08_16_015031_create_quotations_table.php │ ├── 2021_08_16_155013_create_quotation_details_table.php │ ├── 2022_03_08_020247_create_product_warehouse_table.php │ ├── 2022_04_06_155633_create_user_warehouse_table.php │ ├── 2022_10_03_150306_create_languages_table.php │ ├── 2022_10_04_011149_create_media_table.php │ ├── 2022_10_24_155538_create_shippings_table.php │ ├── 2022_11_09_180555_create_printers_table.php │ ├── 2023_02_12_161934_create_notifications_table.php │ ├── 2023_02_25_215121_create_jobs_table.php │ ├── 2023_03_01_233855_create_customer_groups_table.php │ ├── 2023_03_01_233855_create_transfers_table.php │ ├── 2023_03_02_153636_add_customer_group_id_to_customer_table.php │ ├── 2023_03_31_143212_create_movements_table.php │ ├── 2023_04_11_160314_create_price_histories_table.php │ ├── 2023_06_21_003222_create_email_templates_table.php │ ├── 2024_05_02_143505_create_permission_tables.php │ ├── 2024_08_12_000000_add_seasonality_to_product_table.php │ ├── 2024_08_12_000001_add_recurring_fields_to_expenses.php │ ├── 2024_08_21_162842_create_product_attributes_table.php │ ├── 2025_01_17_104242_add_payment_status_to_sales_table.php │ ├── 2025_01_17_104243_add_payment_status_to_purchases_table.php │ ├── 2025_08_27_182724_create_carts_table.php │ └── 2025_08_27_182808_create_cart_items_table.php └── seeders │ ├── AdjustmentSeeder.php │ ├── BrandSeeder.php │ ├── CategoriesSeeder.php │ ├── CurrencySeeder.php │ ├── CustomersSeeder.php │ ├── DatabaseSeeder.php │ ├── ExpenseSeeder.php │ ├── LanguagesSeeder.php │ ├── ProductsSeeder.php │ ├── RolesAndPermissionsSeeder.php │ ├── SettingsSeeder.php │ ├── SuperUserSeeder.php │ ├── SupplierSeeder.php │ ├── UsersSeeder.php │ └── WarehouseSeeder.php ├── lang ├── ID.json ├── PT-BR.json ├── Untitled-1.json ├── ar.json ├── en.json ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── fr.json ├── tr.json ├── tr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── vendor │ └── backup │ ├── ar │ └── notifications.php │ ├── bg │ └── notifications.php │ ├── bn │ └── notifications.php │ ├── cs │ └── notifications.php │ ├── da │ └── notifications.php │ ├── de │ └── notifications.php │ ├── en │ └── notifications.php │ ├── es │ └── notifications.php │ ├── fa │ └── notifications.php │ ├── fi │ └── notifications.php │ ├── fr │ └── notifications.php │ ├── hi │ └── notifications.php │ ├── id │ └── notifications.php │ ├── it │ └── notifications.php │ ├── ja │ └── notifications.php │ ├── nl │ └── notifications.php │ ├── no │ └── notifications.php │ ├── pl │ └── notifications.php │ ├── pt-BR │ └── notifications.php │ ├── pt │ └── notifications.php │ ├── ro │ └── notifications.php │ ├── ru │ └── notifications.php │ ├── tr │ └── notifications.php │ ├── uk │ └── notifications.php │ ├── zh-CN │ └── notifications.php │ └── zh-TW │ └── notifications.php ├── package.json ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── postcss.config.js ├── prettier.config.js ├── public ├── .htaccess ├── favicon.ico ├── fonts │ ├── cairo.ttf │ ├── cairo_normal_366c68c871a60bbcc9abe049f769be47.ttf │ ├── cairo_normal_366c68c871a60bbcc9abe049f769be47.ufm │ ├── installed-fonts.json │ └── notoSansArabic.ttf ├── images │ ├── brands │ │ ├── samsung.jpg │ │ └── swatch.png │ ├── elements │ │ ├── dots3-green.svg │ │ ├── dots3-violet.svg │ │ ├── wave2-yellow.svg │ │ └── wave3-red.svg │ ├── fallback_product_image.png │ ├── fallback_profile_image.png │ ├── favicon.png │ ├── icon-192x192.png │ ├── icon-512x512.png │ ├── livewire-tmp │ │ └── CVU0hUWru7ALH1AViAcDhG4qhQuOIb-metaQmFyQ2hhcnQucG5n-.png │ ├── logo.png │ └── maskable_icon.png ├── index.php ├── js │ ├── chart-config.js │ ├── dropzone.js │ └── jquery-mask-money.js ├── manifest.json ├── print │ ├── bootstrap.min.css │ └── pdfStyle.css ├── robots.txt ├── sw.js └── vendor │ ├── livewire-alert │ └── livewire-alert.js │ ├── livewire │ ├── livewire.js │ ├── livewire.js.map │ └── manifest.json │ └── sweetalert │ └── sweetalert.all.js ├── resources ├── css │ ├── app.css │ ├── font.css │ ├── select.css │ └── theme.css ├── js │ ├── alerts.js │ ├── app.js │ ├── bootstrap.js │ └── echo.js └── views │ ├── admin │ ├── adjustment │ │ ├── .gitkeep │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── barcode │ │ └── index.blade.php │ ├── currency │ │ ├── .gitkeep │ │ └── index.blade.php │ ├── home.blade.php │ ├── integrations │ │ └── index.blade.php │ ├── language │ │ └── index.blade.php │ ├── log │ │ └── index.blade.php │ ├── permission │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── printer │ │ └── index.blade.php │ ├── profile.blade.php │ ├── purchases │ │ ├── .gitkeep │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ └── print.blade.php │ ├── purchasesreturn │ │ ├── .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 │ ├── quotation │ │ ├── .gitkeep │ │ ├── emails │ │ │ └── quotation.blade.php │ │ ├── index.blade.php │ │ ├── print.blade.php │ │ └── quotation-sales │ │ │ └── create.blade.php │ ├── reports │ │ ├── .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 │ ├── roles │ │ └── index.blade.php │ ├── sale │ │ ├── .gitkeep │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── payments │ │ │ └── edit.blade.php │ │ ├── pos │ │ │ └── index.blade.php │ │ ├── print-pos.blade.php │ │ └── print.blade.php │ ├── salesreturn │ │ ├── .gitkeep │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── payments │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partials │ │ │ │ └── actions.blade.php │ │ ├── print.blade.php │ │ └── show.blade.php │ ├── suppliers │ │ ├── details.blade.php │ │ └── index.blade.php │ ├── users │ │ ├── index.blade.php │ │ └── profile.blade.php │ └── warehouses │ │ └── index.blade.php │ ├── catalog │ ├── template-1.blade.php │ ├── template-2.blade.php │ ├── template-3.blade.php │ ├── template-4.blade.php │ └── template-5.blade.php │ ├── components │ ├── accordion.blade.php │ ├── action-message.blade.php │ ├── alert.blade.php │ ├── alerts │ │ └── error.blade.php │ ├── analytics.blade.php │ ├── apex-charts.blade.php │ ├── application-logo.blade.php │ ├── auth-card.blade.php │ ├── auth-session-status.blade.php │ ├── badge.blade.php │ ├── button-fullscreen.blade.php │ ├── button.blade.php │ ├── button │ │ ├── auth │ │ │ └── google.blade.php │ │ ├── back.blade.php │ │ ├── icon-link.blade.php │ │ ├── icon.blade.php │ │ ├── index.blade.php │ │ └── link.blade.php │ ├── card-tooltip.blade.php │ ├── card.blade.php │ ├── checkbox.blade.php │ ├── chips.blade.php │ ├── counter-card.blade.php │ ├── danger-button.blade.php │ ├── date-picker.blade.php │ ├── dialog-modal.blade.php │ ├── dialog.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── dropdown │ │ └── item.blade.php │ ├── dropupload.blade.php │ ├── dropzone.blade.php │ ├── filepond.blade.php │ ├── fileupload.blade.php │ ├── footer.blade.php │ ├── forms │ │ ├── add-input.blade.php │ │ ├── adon-input.blade.php │ │ └── input.blade.php │ ├── header.blade.php │ ├── icons │ │ ├── bell.blade.php │ │ ├── chevron-down.blade.php │ │ ├── dashboard.blade.php │ │ ├── delivery.blade.php │ │ ├── edit.blade.php │ │ ├── empty-circle.blade.php │ │ ├── eye.blade.php │ │ ├── facebook.blade.php │ │ ├── info-circle.blade.php │ │ ├── instagram.blade.php │ │ ├── menu-fold-left.blade.php │ │ ├── menu-fold-right.blade.php │ │ ├── menu.blade.php │ │ ├── moon.blade.php │ │ ├── sun.blade.php │ │ ├── trash.blade.php │ │ ├── twitter.blade.php │ │ └── x.blade.php │ ├── input-date.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── input.blade.php │ ├── input │ │ ├── checkbox.blade.php │ │ ├── date.blade.php │ │ ├── datepicker.blade.php │ │ ├── file-upload.blade.php │ │ ├── group.blade.php │ │ ├── money.blade.php │ │ ├── rich-text.blade.php │ │ ├── select.blade.php │ │ ├── text.blade.php │ │ └── textarea.blade.php │ ├── label.blade.php │ ├── language-dropdown.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── guest.blade.php │ │ ├── navigation.blade.php │ │ ├── pos.blade.php │ │ ├── print.blade.php │ │ └── vendor.blade.php │ ├── loading-mask.blade.php │ ├── loading.blade.php │ ├── media-upload.blade.php │ ├── modal.blade.php │ ├── modal │ │ ├── card.blade.php │ │ ├── confirmation.blade.php │ │ └── dialog.blade.php │ ├── nav-link.blade.php │ ├── navbar-pos.blade.php │ ├── navbar.blade.php │ ├── navigation │ │ ├── desktop.blade.php │ │ └── mobile.blade.php │ ├── notification.blade.php │ ├── perfect-scrollbar.blade.php │ ├── picture.blade.php │ ├── primary-button.blade.php │ ├── printHeader.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── select-list.blade.php │ ├── select.blade.php │ ├── select2.blade.php │ ├── settings-bar.blade.php │ ├── sidebar │ │ ├── content.blade.php │ │ ├── dropdown.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── link.blade.php │ │ ├── overlay.blade.php │ │ ├── sidebar.blade.php │ │ └── sublink.blade.php │ ├── sort │ │ └── sort-field.blade.php │ ├── spinner │ │ ├── code │ │ │ ├── black.blade.php │ │ │ └── white.blade.php │ │ ├── image │ │ │ ├── black.blade.php │ │ │ └── white.blade.php │ │ └── index.blade.php │ ├── tab.blade.php │ ├── table-responsive.blade.php │ ├── table.blade.php │ ├── table │ │ ├── cell.blade.php │ │ ├── checkbox.blade.php │ │ ├── heading.blade.php │ │ ├── row.blade.php │ │ ├── sort.blade.php │ │ ├── tbody.blade.php │ │ ├── td.blade.php │ │ ├── tfoot.blade.php │ │ ├── th.blade.php │ │ ├── thead.blade.php │ │ └── tr.blade.php │ ├── tabs.blade.php │ ├── text-input.blade.php │ ├── theme │ │ ├── accordion.blade.php │ │ ├── back-to-top.blade.php │ │ ├── breadcrumb.blade.php │ │ ├── card-content.blade.php │ │ ├── card.blade.php │ │ ├── colors.blade.php │ │ ├── editorjs.blade.php │ │ ├── footer.blade.php │ │ ├── grid.blade.php │ │ ├── header.blade.php │ │ ├── html-block.blade.php │ │ ├── img.blade.php │ │ ├── language-switcher.blade.php │ │ ├── layout.blade.php │ │ ├── logo.blade.php │ │ ├── menu-list.blade.php │ │ ├── menu-widget-item.blade.php │ │ ├── menu-widget.blade.php │ │ ├── menu.blade.php │ │ ├── newsletters.blade.php │ │ ├── row.blade.php │ │ ├── slider.blade.php │ │ ├── social-media-icons.blade.php │ │ ├── social.blade.php │ │ ├── tabs.blade.php │ │ └── text.blade.php │ ├── toggle-switch.blade.php │ └── validation-errors.blade.php │ ├── dashboard.blade.php │ ├── emails │ ├── ReturnMail.blade.php │ ├── payment-purchase-mail.php │ ├── payment-return-mail.blade.php │ ├── payment-sale-mail.blade.php │ ├── purchaseMail.blade.php │ ├── quotationMail.blade.php │ ├── resetRequest.blade.php │ ├── resetSuccess.blade.php │ └── saleMail.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── includes │ ├── main-css.blade.php │ └── main-js.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ ├── navigation.blade.php │ ├── pos.blade.php │ ├── print.blade.php │ └── template.blade.php │ ├── livewire │ ├── adjustment │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── product-table.blade.php │ │ └── show.blade.php │ ├── auth │ │ ├── confirm-password.blade.php │ │ ├── forgot-password.blade.php │ │ ├── login.blade.php │ │ ├── register.blade.php │ │ ├── reset-password.blade.php │ │ └── verify.blade.php │ ├── backup │ │ └── index.blade.php │ ├── brands │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── calculator.blade.php │ ├── cash-register │ │ ├── create.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── import.blade.php │ │ └── index.blade.php │ ├── currency │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── customer-group │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── customers │ │ ├── create.blade.php │ │ ├── details.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── pay-due.blade.php │ │ └── show.blade.php │ ├── dashboard.blade.php │ ├── expense-categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── expense │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── includes │ │ ├── product-cart-modal.blade.php │ │ ├── product-cart-price.blade.php │ │ └── product-cart-quantity.blade.php │ ├── language │ │ ├── create.blade.php │ │ ├── edit-translation.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── layout │ │ └── navigation.blade.php │ ├── pages │ │ └── auth │ │ │ ├── confirm-password.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ │ ├── reset-password.blade.php │ │ │ └── verify-email.blade.php │ ├── permission │ │ └── index.blade.php │ ├── pos │ │ └── index.blade.php │ ├── printer │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── products │ │ ├── barcode.blade.php │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── highlighted.blade.php │ │ ├── import.blade.php │ │ ├── index.blade.php │ │ ├── product-options.blade.php │ │ ├── promo-prices.blade.php │ │ └── show.blade.php │ ├── profile │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── purchase-return │ │ └── index.blade.php │ ├── purchase │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── payment-form.blade.php │ │ ├── payment │ │ │ └── index.blade.php │ │ └── show.blade.php │ ├── quotations │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── reports │ │ ├── customers-report.blade.php │ │ ├── payments-report.blade.php │ │ ├── product-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 │ │ ├── stock-alert-report.blade.php │ │ ├── suppliers-report.blade.php │ │ └── warehouse-report.blade.php │ ├── role │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── sale-return │ │ └── index.blade.php │ ├── sales │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── payment-form.blade.php │ │ ├── payment │ │ │ └── index.blade.php │ │ ├── recent.blade.php │ │ └── show.blade.php │ ├── settings │ │ ├── index.blade.php │ │ ├── messaging.blade.php │ │ ├── smtp.blade.php │ │ └── update.blade.php │ ├── stats │ │ └── transactions.blade.php │ ├── suppliers │ │ ├── create.blade.php │ │ ├── details.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── pay-due.blade.php │ │ └── show.blade.php │ ├── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── profile.blade.php │ │ └── show.blade.php │ ├── utils │ │ ├── cache.blade.php │ │ ├── livesearch.blade.php │ │ ├── logs.blade.php │ │ ├── notifications.blade.php │ │ ├── product-cart.blade.php │ │ ├── search-product.blade.php │ │ └── toggle-button.blade.php │ └── warehouses │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── pdf │ ├── bardcode-print.blade.php │ ├── customer-report.blade.php │ ├── customers.blade.php │ ├── expenses.blade.php │ ├── paymentPurchaseReturn.blade.php │ ├── paymentSale.blade.php │ ├── paymentSaleReturn.blade.php │ ├── payments_purchase.blade.php │ ├── products.blade.php │ ├── purchase-report.blade.php │ ├── purchaseReturn.blade.php │ ├── quotation-report.blade.php │ ├── sale-report.blade.php │ ├── saleReturn.blade.php │ ├── supplier-report.blade.php │ └── suppliers.blade.php │ ├── profile.blade.php │ ├── utils │ └── alerts.blade.php │ └── vendor │ ├── livewire │ ├── bootstrap.blade.php │ ├── simple-bootstrap.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── notifications │ └── email.blade.php │ └── sweetalert │ └── alert.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── screens ├── customer-modal.png ├── dashboard.png ├── login.png ├── pos.png ├── product-modal.png ├── products.png ├── purchase-create.png └── sale-create.png ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── DashboardTest.php │ ├── Livewire │ │ ├── Adjustments │ │ │ ├── Create.php │ │ │ └── IndexTest.php │ │ ├── Backup │ │ │ └── IndexTest.php │ │ ├── Brands │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── Categories │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── Currencies │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── Customers │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── ExpenseCategories │ │ │ └── IndexTest.php │ │ ├── Expenses │ │ │ ├── CreateTest.php │ │ │ └── IndexTest.php │ │ ├── Languages │ │ │ └── IndexTest.php │ │ ├── Permissions │ │ │ └── IndexTest.php │ │ ├── Products │ │ │ └── IndexTest.php │ │ ├── Purchases │ │ │ └── IndexTest.php │ │ ├── Quotations │ │ │ └── IndexTest.php │ │ ├── Reports │ │ │ └── IndexTest.php │ │ ├── Roles │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── Sales │ │ │ └── IndexTest.php │ │ ├── Suppliers │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ └── IndexTest.php │ │ ├── Users │ │ │ ├── CreateTest.php │ │ │ └── IndexTest.php │ │ └── Warehouse │ │ │ ├── CreateTest.php │ │ │ └── IndexTest.php │ └── ProfileTest.php ├── Pest.php └── TestCase.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/.env.ci -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/BackupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Console/Commands/BackupCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Console/Commands/GenerateApiController.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Console/Commands/GenerateProperty.php -------------------------------------------------------------------------------- /app/Enums/BackupSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/BackupSchedule.php -------------------------------------------------------------------------------- /app/Enums/MovementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/MovementType.php -------------------------------------------------------------------------------- /app/Enums/PaymentStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/PaymentStatus.php -------------------------------------------------------------------------------- /app/Enums/PurchaseReturnStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/PurchaseReturnStatus.php -------------------------------------------------------------------------------- /app/Enums/PurchaseStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/PurchaseStatus.php -------------------------------------------------------------------------------- /app/Enums/QuotationStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/QuotationStatus.php -------------------------------------------------------------------------------- /app/Enums/SaleReturnStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/SaleReturnStatus.php -------------------------------------------------------------------------------- /app/Enums/SaleStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/SaleStatus.php -------------------------------------------------------------------------------- /app/Enums/ShippingStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/ShippingStatus.php -------------------------------------------------------------------------------- /app/Enums/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/Status.php -------------------------------------------------------------------------------- /app/Enums/UnitType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Enums/UnitType.php -------------------------------------------------------------------------------- /app/Exports/CategoriesExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/CategoriesExport.php -------------------------------------------------------------------------------- /app/Exports/CustomerExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/CustomerExport.php -------------------------------------------------------------------------------- /app/Exports/ExpenseExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/ExpenseExport.php -------------------------------------------------------------------------------- /app/Exports/ForModelsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/ForModelsTrait.php -------------------------------------------------------------------------------- /app/Exports/ProductExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/ProductExport.php -------------------------------------------------------------------------------- /app/Exports/PurchaseExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/PurchaseExport.php -------------------------------------------------------------------------------- /app/Exports/SaleExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/SaleExport.php -------------------------------------------------------------------------------- /app/Exports/SupplierExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Exports/SupplierExport.php -------------------------------------------------------------------------------- /app/Helpers/GitHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Helpers/GitHandler.php -------------------------------------------------------------------------------- /app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Helpers/helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/CustomerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ExpenseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/ExpenseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/SupplierController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/SupplierController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/WarehouseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Api/WarehouseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ExportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/ExportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/IntegrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/IntegrationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PurchasesReturnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/PurchasesReturnController.php -------------------------------------------------------------------------------- /app/Http/Controllers/QuotationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/QuotationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/QuotationSalesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/QuotationSalesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/ReportsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SalesReturnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Controllers/SalesReturnController.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Middleware/Locale.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StorePurchaseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePurchaseReturnRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StorePurchaseReturnRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreQuotationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StoreQuotationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StoreSaleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSaleReturnRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StoreSaleReturnRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSmtpSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/StoreSmtpSettingsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/UpdatePurchaseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePurchaseReturnRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/UpdatePurchaseReturnRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateQuotationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/UpdateQuotationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/UpdateSaleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSaleReturnRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Requests/UpdateSaleReturnRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/CategoryResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CustomerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/CustomerResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ExpenseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/ExpenseResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ProductCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/ProductCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/ProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/ProductResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ProductWarehouseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/ProductWarehouseResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PurchaseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/PurchaseResource.php -------------------------------------------------------------------------------- /app/Http/Resources/QuotationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/QuotationResource.php -------------------------------------------------------------------------------- /app/Http/Resources/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/RoleResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SalePaymentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/SalePaymentResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SaleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/SaleResource.php -------------------------------------------------------------------------------- /app/Http/Resources/SupplierResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/SupplierResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Http/Resources/WarehouseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Resources/WarehouseResource.php -------------------------------------------------------------------------------- /app/Http/Services/Contracts/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Services/Contracts/FilterInterface.php -------------------------------------------------------------------------------- /app/Http/Services/Contracts/FilterSumInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Http/Services/Contracts/FilterSumInterface.php -------------------------------------------------------------------------------- /app/Imports/BrandsImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/BrandsImport.php -------------------------------------------------------------------------------- /app/Imports/CategoriesImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/CategoriesImport.php -------------------------------------------------------------------------------- /app/Imports/CustomerImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/CustomerImport.php -------------------------------------------------------------------------------- /app/Imports/ExpenseImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/ExpenseImport.php -------------------------------------------------------------------------------- /app/Imports/ProductImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/ProductImport.php -------------------------------------------------------------------------------- /app/Imports/PurchaseImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/PurchaseImport.php -------------------------------------------------------------------------------- /app/Imports/SaleImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/SaleImport.php -------------------------------------------------------------------------------- /app/Imports/SupplierImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Imports/SupplierImport.php -------------------------------------------------------------------------------- /app/Jobs/ImportJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Jobs/ImportJob.php -------------------------------------------------------------------------------- /app/Jobs/PaymentNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Jobs/PaymentNotification.php -------------------------------------------------------------------------------- /app/Jobs/UnderMaintenanceJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Jobs/UnderMaintenanceJob.php -------------------------------------------------------------------------------- /app/Jobs/UpdateProductCostHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Jobs/UpdateProductCostHistory.php -------------------------------------------------------------------------------- /app/Livewire/Actions/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Actions/Logout.php -------------------------------------------------------------------------------- /app/Livewire/Adjustment/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Adjustment/Create.php -------------------------------------------------------------------------------- /app/Livewire/Adjustment/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Adjustment/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Adjustment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Adjustment/Index.php -------------------------------------------------------------------------------- /app/Livewire/Adjustment/ProductTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Adjustment/ProductTable.php -------------------------------------------------------------------------------- /app/Livewire/Adjustment/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Adjustment/Show.php -------------------------------------------------------------------------------- /app/Livewire/Auth/ConfirmPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/ConfirmPassword.php -------------------------------------------------------------------------------- /app/Livewire/Auth/ForgotPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/ForgotPassword.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Login.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Passwords/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Passwords/Confirm.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Passwords/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Passwords/Email.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Passwords/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Passwords/Reset.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Register.php -------------------------------------------------------------------------------- /app/Livewire/Auth/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/ResetPassword.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Auth/Verify.php -------------------------------------------------------------------------------- /app/Livewire/Backup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Backup/Index.php -------------------------------------------------------------------------------- /app/Livewire/Brands/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Brands/Create.php -------------------------------------------------------------------------------- /app/Livewire/Brands/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Brands/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Brands/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Brands/Index.php -------------------------------------------------------------------------------- /app/Livewire/Brands/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Brands/Show.php -------------------------------------------------------------------------------- /app/Livewire/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Calculator.php -------------------------------------------------------------------------------- /app/Livewire/CashRegister/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CashRegister/Create.php -------------------------------------------------------------------------------- /app/Livewire/CashRegister/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CashRegister/Index.php -------------------------------------------------------------------------------- /app/Livewire/CashRegister/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CashRegister/Show.php -------------------------------------------------------------------------------- /app/Livewire/Categories/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Categories/Create.php -------------------------------------------------------------------------------- /app/Livewire/Categories/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Categories/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Categories/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Categories/Import.php -------------------------------------------------------------------------------- /app/Livewire/Categories/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Categories/Index.php -------------------------------------------------------------------------------- /app/Livewire/Currency/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Currency/Create.php -------------------------------------------------------------------------------- /app/Livewire/Currency/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Currency/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Currency/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Currency/Index.php -------------------------------------------------------------------------------- /app/Livewire/Currency/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Currency/Show.php -------------------------------------------------------------------------------- /app/Livewire/CustomerGroup/CatalogPrint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CustomerGroup/CatalogPrint.php -------------------------------------------------------------------------------- /app/Livewire/CustomerGroup/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CustomerGroup/Create.php -------------------------------------------------------------------------------- /app/Livewire/CustomerGroup/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CustomerGroup/Edit.php -------------------------------------------------------------------------------- /app/Livewire/CustomerGroup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/CustomerGroup/Index.php -------------------------------------------------------------------------------- /app/Livewire/Customers/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/Create.php -------------------------------------------------------------------------------- /app/Livewire/Customers/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/Details.php -------------------------------------------------------------------------------- /app/Livewire/Customers/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Customers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/Index.php -------------------------------------------------------------------------------- /app/Livewire/Customers/PayDue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/PayDue.php -------------------------------------------------------------------------------- /app/Livewire/Customers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Customers/Show.php -------------------------------------------------------------------------------- /app/Livewire/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Dashboard.php -------------------------------------------------------------------------------- /app/Livewire/Email/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Email/Create.php -------------------------------------------------------------------------------- /app/Livewire/Email/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Email/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Email/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Email/Index.php -------------------------------------------------------------------------------- /app/Livewire/Expense/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Expense/Create.php -------------------------------------------------------------------------------- /app/Livewire/Expense/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Expense/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Expense/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Expense/Index.php -------------------------------------------------------------------------------- /app/Livewire/ExpenseCategories/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/ExpenseCategories/Create.php -------------------------------------------------------------------------------- /app/Livewire/ExpenseCategories/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/ExpenseCategories/Edit.php -------------------------------------------------------------------------------- /app/Livewire/ExpenseCategories/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/ExpenseCategories/Index.php -------------------------------------------------------------------------------- /app/Livewire/Forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Forms/LoginForm.php -------------------------------------------------------------------------------- /app/Livewire/Language/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Language/Create.php -------------------------------------------------------------------------------- /app/Livewire/Language/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Language/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Language/EditTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Language/EditTranslation.php -------------------------------------------------------------------------------- /app/Livewire/Language/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Language/Index.php -------------------------------------------------------------------------------- /app/Livewire/Notification/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Notification/Index.php -------------------------------------------------------------------------------- /app/Livewire/Permission/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Permission/Index.php -------------------------------------------------------------------------------- /app/Livewire/Pos/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Pos/Index.php -------------------------------------------------------------------------------- /app/Livewire/Printer/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Printer/Create.php -------------------------------------------------------------------------------- /app/Livewire/Printer/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Printer/Index.php -------------------------------------------------------------------------------- /app/Livewire/Products/Barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Barcode.php -------------------------------------------------------------------------------- /app/Livewire/Products/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Create.php -------------------------------------------------------------------------------- /app/Livewire/Products/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Products/Highlighted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Highlighted.php -------------------------------------------------------------------------------- /app/Livewire/Products/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Import.php -------------------------------------------------------------------------------- /app/Livewire/Products/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Index.php -------------------------------------------------------------------------------- /app/Livewire/Products/ProductOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/ProductOptions.php -------------------------------------------------------------------------------- /app/Livewire/Products/PromoPrices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/PromoPrices.php -------------------------------------------------------------------------------- /app/Livewire/Products/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Products/Show.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Create.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Index.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Invoice.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Payment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Payment/Index.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/PaymentForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/PaymentForm.php -------------------------------------------------------------------------------- /app/Livewire/Purchase/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Purchase/Show.php -------------------------------------------------------------------------------- /app/Livewire/PurchaseReturn/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/PurchaseReturn/Create.php -------------------------------------------------------------------------------- /app/Livewire/PurchaseReturn/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/PurchaseReturn/Edit.php -------------------------------------------------------------------------------- /app/Livewire/PurchaseReturn/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/PurchaseReturn/Index.php -------------------------------------------------------------------------------- /app/Livewire/PurchaseReturn/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/PurchaseReturn/Show.php -------------------------------------------------------------------------------- /app/Livewire/Quotations/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Quotations/Create.php -------------------------------------------------------------------------------- /app/Livewire/Quotations/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Quotations/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Quotations/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Quotations/Index.php -------------------------------------------------------------------------------- /app/Livewire/Quotations/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Quotations/Show.php -------------------------------------------------------------------------------- /app/Livewire/Reports/CustomersReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/CustomersReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/PaymentsReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/PaymentsReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/ProductReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/ProductReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/ProfitLossReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/ProfitLossReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/PurchasesReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/PurchasesReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/PurchasesReturnReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/PurchasesReturnReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/SalesReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/SalesReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/SalesReturnReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/SalesReturnReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/StockAlertReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/StockAlertReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/SuppliersReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/SuppliersReport.php -------------------------------------------------------------------------------- /app/Livewire/Reports/WarehouseReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Reports/WarehouseReport.php -------------------------------------------------------------------------------- /app/Livewire/Role/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Role/Create.php -------------------------------------------------------------------------------- /app/Livewire/Role/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Role/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Role/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Role/Index.php -------------------------------------------------------------------------------- /app/Livewire/SaleReturn/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/SaleReturn/Index.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Create.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Index.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Invoice.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Payment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Payment/Index.php -------------------------------------------------------------------------------- /app/Livewire/Sales/PaymentForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/PaymentForm.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Recent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Recent.php -------------------------------------------------------------------------------- /app/Livewire/Sales/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Sales/Show.php -------------------------------------------------------------------------------- /app/Livewire/Sales/SyncOrders.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Livewire/Settings/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/Index.php -------------------------------------------------------------------------------- /app/Livewire/Settings/InvoiceTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/InvoiceTheme.php -------------------------------------------------------------------------------- /app/Livewire/Settings/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/Languages.php -------------------------------------------------------------------------------- /app/Livewire/Settings/MaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/MaintenanceMode.php -------------------------------------------------------------------------------- /app/Livewire/Settings/Messaging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/Messaging.php -------------------------------------------------------------------------------- /app/Livewire/Settings/Smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/Smtp.php -------------------------------------------------------------------------------- /app/Livewire/Settings/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Settings/Update.php -------------------------------------------------------------------------------- /app/Livewire/Shipping/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Shipping/Create.php -------------------------------------------------------------------------------- /app/Livewire/Shipping/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Shipping/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Shipping/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Shipping/Index.php -------------------------------------------------------------------------------- /app/Livewire/Stats/Transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Stats/Transactions.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/Create.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/Details.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/Index.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/PayDue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/PayDue.php -------------------------------------------------------------------------------- /app/Livewire/Suppliers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Suppliers/Show.php -------------------------------------------------------------------------------- /app/Livewire/Transfer/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Transfer/Create.php -------------------------------------------------------------------------------- /app/Livewire/Transfer/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Transfer/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Transfer/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Transfer/Index.php -------------------------------------------------------------------------------- /app/Livewire/Transfer/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Transfer/Show.php -------------------------------------------------------------------------------- /app/Livewire/Users/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Users/Create.php -------------------------------------------------------------------------------- /app/Livewire/Users/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Users/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Users/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Users/Index.php -------------------------------------------------------------------------------- /app/Livewire/Users/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Users/Profile.php -------------------------------------------------------------------------------- /app/Livewire/Users/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Users/Show.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Cache.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Calculator.php -------------------------------------------------------------------------------- /app/Livewire/Utils/ColorPicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/ColorPicker.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Datatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Datatable.php -------------------------------------------------------------------------------- /app/Livewire/Utils/EditorJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/EditorJs.php -------------------------------------------------------------------------------- /app/Livewire/Utils/HasDateFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/HasDateFilter.php -------------------------------------------------------------------------------- /app/Livewire/Utils/HasDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/HasDelete.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Livesearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Livesearch.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Logs.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Meta.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Notifications.php -------------------------------------------------------------------------------- /app/Livewire/Utils/ProductCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/ProductCart.php -------------------------------------------------------------------------------- /app/Livewire/Utils/QrGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/QrGenerator.php -------------------------------------------------------------------------------- /app/Livewire/Utils/QueueMonitor/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/QueueMonitor/Index.php -------------------------------------------------------------------------------- /app/Livewire/Utils/SearchProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/SearchProduct.php -------------------------------------------------------------------------------- /app/Livewire/Utils/Sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/Sidebar.php -------------------------------------------------------------------------------- /app/Livewire/Utils/ToggleButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/ToggleButton.php -------------------------------------------------------------------------------- /app/Livewire/Utils/WithModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Utils/WithModels.php -------------------------------------------------------------------------------- /app/Livewire/Warehouses/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Warehouses/Create.php -------------------------------------------------------------------------------- /app/Livewire/Warehouses/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Warehouses/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Warehouses/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/Warehouses/Index.php -------------------------------------------------------------------------------- /app/Livewire/WithSorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Livewire/WithSorting.php -------------------------------------------------------------------------------- /app/Mail/PaymentPurchaseMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/PaymentPurchaseMail.php -------------------------------------------------------------------------------- /app/Mail/PaymentReturnMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/PaymentReturnMail.php -------------------------------------------------------------------------------- /app/Mail/PaymentSaleMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/PaymentSaleMail.php -------------------------------------------------------------------------------- /app/Mail/PurchaseMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/PurchaseMail.php -------------------------------------------------------------------------------- /app/Mail/QuotationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/QuotationMail.php -------------------------------------------------------------------------------- /app/Mail/ReturnPurchaseMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/ReturnPurchaseMail.php -------------------------------------------------------------------------------- /app/Mail/ReturnSaleMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/ReturnSaleMail.php -------------------------------------------------------------------------------- /app/Mail/SaleMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Mail/SaleMail.php -------------------------------------------------------------------------------- /app/Models/AdjustedProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/AdjustedProduct.php -------------------------------------------------------------------------------- /app/Models/Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Adjustment.php -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Brand.php -------------------------------------------------------------------------------- /app/Models/CashRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/CashRegister.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Currency.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/CustomerGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/CustomerGroup.php -------------------------------------------------------------------------------- /app/Models/EmailTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/EmailTemplate.php -------------------------------------------------------------------------------- /app/Models/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Expense.php -------------------------------------------------------------------------------- /app/Models/ExpenseCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/ExpenseCategory.php -------------------------------------------------------------------------------- /app/Models/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Invoice.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/Movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Movement.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/PriceHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PriceHistory.php -------------------------------------------------------------------------------- /app/Models/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Printer.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/ProductAttribute.php -------------------------------------------------------------------------------- /app/Models/ProductWarehouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/ProductWarehouse.php -------------------------------------------------------------------------------- /app/Models/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Purchase.php -------------------------------------------------------------------------------- /app/Models/PurchaseDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PurchaseDetail.php -------------------------------------------------------------------------------- /app/Models/PurchasePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PurchasePayment.php -------------------------------------------------------------------------------- /app/Models/PurchaseReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PurchaseReturn.php -------------------------------------------------------------------------------- /app/Models/PurchaseReturnDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PurchaseReturnDetail.php -------------------------------------------------------------------------------- /app/Models/PurchaseReturnPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/PurchaseReturnPayment.php -------------------------------------------------------------------------------- /app/Models/Quotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Quotation.php -------------------------------------------------------------------------------- /app/Models/QuotationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/QuotationDetails.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Sale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Sale.php -------------------------------------------------------------------------------- /app/Models/SaleDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/SaleDetails.php -------------------------------------------------------------------------------- /app/Models/SalePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/SalePayment.php -------------------------------------------------------------------------------- /app/Models/SaleReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/SaleReturn.php -------------------------------------------------------------------------------- /app/Models/SaleReturnDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/SaleReturnDetail.php -------------------------------------------------------------------------------- /app/Models/SaleReturnPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/SaleReturnPayment.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Shipment.php -------------------------------------------------------------------------------- /app/Models/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Shipping.php -------------------------------------------------------------------------------- /app/Models/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Supplier.php -------------------------------------------------------------------------------- /app/Models/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Transfer.php -------------------------------------------------------------------------------- /app/Models/TransferDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/TransferDetails.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserWarehouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/UserWarehouse.php -------------------------------------------------------------------------------- /app/Models/Warehouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Models/Warehouse.php -------------------------------------------------------------------------------- /app/Notifications/PaymentDue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Notifications/PaymentDue.php -------------------------------------------------------------------------------- /app/Notifications/ProductTelegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Notifications/ProductTelegram.php -------------------------------------------------------------------------------- /app/Observers/ProductObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Observers/ProductObserver.php -------------------------------------------------------------------------------- /app/Observers/SettingsObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Observers/SettingsObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/VoltServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Providers/VoltServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/MatchCurrentPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Rules/MatchCurrentPassword.php -------------------------------------------------------------------------------- /app/Scopes/ProductScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Scopes/ProductScope.php -------------------------------------------------------------------------------- /app/Scopes/SaleScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Scopes/SaleScope.php -------------------------------------------------------------------------------- /app/Support/FilterQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Support/FilterQueryBuilder.php -------------------------------------------------------------------------------- /app/Support/HasAdvancedFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Support/HasAdvancedFilter.php -------------------------------------------------------------------------------- /app/Traits/CacheCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/CacheCleaner.php -------------------------------------------------------------------------------- /app/Traits/Datatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/Datatable.php -------------------------------------------------------------------------------- /app/Traits/GetModelByUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/GetModelByUuid.php -------------------------------------------------------------------------------- /app/Traits/HasGlobalDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/HasGlobalDate.php -------------------------------------------------------------------------------- /app/Traits/HasUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/HasUuid.php -------------------------------------------------------------------------------- /app/Traits/LazySpinner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/LazySpinner.php -------------------------------------------------------------------------------- /app/Traits/Trashed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/Trashed.php -------------------------------------------------------------------------------- /app/Traits/UuidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/UuidGenerator.php -------------------------------------------------------------------------------- /app/Traits/WithAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/Traits/WithAlert.php -------------------------------------------------------------------------------- /app/View/Components/ApexCharts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/ApexCharts.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/Card.php -------------------------------------------------------------------------------- /app/View/Components/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/Content.php -------------------------------------------------------------------------------- /app/View/Components/DatePicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/DatePicker.php -------------------------------------------------------------------------------- /app/View/Components/Dropzone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/Dropzone.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/View/Components/LanguageDropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/LanguageDropdown.php -------------------------------------------------------------------------------- /app/View/Components/SelectList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/SelectList.php -------------------------------------------------------------------------------- /app/View/Components/Sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/Sidebar.php -------------------------------------------------------------------------------- /app/View/Components/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/Table.php -------------------------------------------------------------------------------- /app/View/Components/ToggleButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/app/View/Components/ToggleButton.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/cart.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/insights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/insights.php -------------------------------------------------------------------------------- /config/invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/invoices.php -------------------------------------------------------------------------------- /config/laravel-translatable-string-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/laravel-translatable-string-exporter.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/pdf.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/project.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/reverb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/reverb.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/session.php -------------------------------------------------------------------------------- /config/sweetalert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/config/sweetalert.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/BrandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/BrandFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/CurrencyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/CurrencyFactory.php -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/ExpenseCategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/ExpenseCategoryFactory.php -------------------------------------------------------------------------------- /database/factories/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/ProductFactory.php -------------------------------------------------------------------------------- /database/factories/PurchaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/PurchaseFactory.php -------------------------------------------------------------------------------- /database/factories/SaleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/SaleFactory.php -------------------------------------------------------------------------------- /database/factories/SupplierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/SupplierFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/factories/WarehouseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/factories/WarehouseFactory.php -------------------------------------------------------------------------------- /database/seeders/AdjustmentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/AdjustmentSeeder.php -------------------------------------------------------------------------------- /database/seeders/BrandSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/BrandSeeder.php -------------------------------------------------------------------------------- /database/seeders/CategoriesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/CategoriesSeeder.php -------------------------------------------------------------------------------- /database/seeders/CurrencySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/CurrencySeeder.php -------------------------------------------------------------------------------- /database/seeders/CustomersSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/CustomersSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/ExpenseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/ExpenseSeeder.php -------------------------------------------------------------------------------- /database/seeders/LanguagesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/LanguagesSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProductsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/ProductsSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolesAndPermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/RolesAndPermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/SettingsSeeder.php -------------------------------------------------------------------------------- /database/seeders/SuperUserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/SuperUserSeeder.php -------------------------------------------------------------------------------- /database/seeders/SupplierSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/SupplierSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/UsersSeeder.php -------------------------------------------------------------------------------- /database/seeders/WarehouseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/database/seeders/WarehouseSeeder.php -------------------------------------------------------------------------------- /lang/ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/ID.json -------------------------------------------------------------------------------- /lang/PT-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/PT-BR.json -------------------------------------------------------------------------------- /lang/Untitled-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/Untitled-1.json -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/tr.json -------------------------------------------------------------------------------- /lang/tr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/tr/auth.php -------------------------------------------------------------------------------- /lang/tr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/tr/pagination.php -------------------------------------------------------------------------------- /lang/tr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/tr/passwords.php -------------------------------------------------------------------------------- /lang/tr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/tr/validation.php -------------------------------------------------------------------------------- /lang/vendor/backup/ar/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/ar/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/bg/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/bg/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/bn/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/bn/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/cs/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/cs/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/da/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/da/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/de/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/en/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/es/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fa/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/fa/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/fi/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/fr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/hi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/hi/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/id/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/id/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/it/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ja/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/ja/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/nl/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/no/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/no/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/pl/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pt-BR/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/pt-BR/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pt/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/pt/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ro/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/ro/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ru/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/ru/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/tr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/tr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/uk/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/uk/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/zh-CN/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/zh-CN/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/zh-TW/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/lang/vendor/backup/zh-TW/notifications.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/pint.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/cairo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/fonts/cairo.ttf -------------------------------------------------------------------------------- /public/fonts/installed-fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/fonts/installed-fonts.json -------------------------------------------------------------------------------- /public/fonts/notoSansArabic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/fonts/notoSansArabic.ttf -------------------------------------------------------------------------------- /public/images/brands/samsung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/brands/samsung.jpg -------------------------------------------------------------------------------- /public/images/brands/swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/brands/swatch.png -------------------------------------------------------------------------------- /public/images/elements/dots3-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/elements/dots3-green.svg -------------------------------------------------------------------------------- /public/images/elements/dots3-violet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/elements/dots3-violet.svg -------------------------------------------------------------------------------- /public/images/elements/wave2-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/elements/wave2-yellow.svg -------------------------------------------------------------------------------- /public/images/elements/wave3-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/elements/wave3-red.svg -------------------------------------------------------------------------------- /public/images/fallback_product_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/fallback_product_image.png -------------------------------------------------------------------------------- /public/images/fallback_profile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/fallback_profile_image.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/icon-192x192.png -------------------------------------------------------------------------------- /public/images/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/icon-512x512.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/maskable_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/images/maskable_icon.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/chart-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/js/chart-config.js -------------------------------------------------------------------------------- /public/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/js/dropzone.js -------------------------------------------------------------------------------- /public/js/jquery-mask-money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/js/jquery-mask-money.js -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/print/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/print/bootstrap.min.css -------------------------------------------------------------------------------- /public/print/pdfStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/print/pdfStyle.css -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/vendor/livewire-alert/livewire-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/vendor/livewire-alert/livewire-alert.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/vendor/livewire/livewire.js -------------------------------------------------------------------------------- /public/vendor/livewire/livewire.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/vendor/livewire/livewire.js.map -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- 1 | 2 | {"/livewire.js":"df3a17f2"} 3 | -------------------------------------------------------------------------------- /public/vendor/sweetalert/sweetalert.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/public/vendor/sweetalert/sweetalert.all.js -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/css/font.css -------------------------------------------------------------------------------- /resources/css/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/css/select.css -------------------------------------------------------------------------------- /resources/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/css/theme.css -------------------------------------------------------------------------------- /resources/js/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/js/alerts.js -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/js/echo.js -------------------------------------------------------------------------------- /resources/views/admin/adjustment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/adjustment/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/adjustment/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/adjustment/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/adjustment/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/adjustment/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/adjustment/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/barcode/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/barcode/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/currency/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/currency/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/currency/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/home.blade.php -------------------------------------------------------------------------------- /resources/views/admin/integrations/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/integrations/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/language/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/language/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/log/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/log/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permission/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/permission/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permission/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/permission/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permission/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/permission/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permission/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/permission/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/printer/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/printer/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/profile.blade.php -------------------------------------------------------------------------------- /resources/views/admin/purchases/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/purchases/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/purchases/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/purchases/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/purchases/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/purchases/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/purchases/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/purchases/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/purchases/print.blade.php -------------------------------------------------------------------------------- /resources/views/admin/purchasesreturn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/quotation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/quotation/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/quotation/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/quotation/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/quotation/print.blade.php -------------------------------------------------------------------------------- /resources/views/admin/reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/roles/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/sale/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/payments/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/payments/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/pos/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/pos/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/print-pos.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/print-pos.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sale/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/sale/print.blade.php -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/salesreturn/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/salesreturn/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/salesreturn/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/salesreturn/print.blade.php -------------------------------------------------------------------------------- /resources/views/admin/salesreturn/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/salesreturn/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/suppliers/details.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/suppliers/details.blade.php -------------------------------------------------------------------------------- /resources/views/admin/suppliers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/suppliers/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/users/profile.blade.php -------------------------------------------------------------------------------- /resources/views/admin/warehouses/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/admin/warehouses/index.blade.php -------------------------------------------------------------------------------- /resources/views/catalog/template-1.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/catalog/template-1.blade.php -------------------------------------------------------------------------------- /resources/views/catalog/template-2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/catalog/template-2.blade.php -------------------------------------------------------------------------------- /resources/views/catalog/template-3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/catalog/template-3.blade.php -------------------------------------------------------------------------------- /resources/views/catalog/template-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/catalog/template-4.blade.php -------------------------------------------------------------------------------- /resources/views/catalog/template-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/catalog/template-5.blade.php -------------------------------------------------------------------------------- /resources/views/components/accordion.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/accordion.blade.php -------------------------------------------------------------------------------- /resources/views/components/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/alert.blade.php -------------------------------------------------------------------------------- /resources/views/components/alerts/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/alerts/error.blade.php -------------------------------------------------------------------------------- /resources/views/components/analytics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/analytics.blade.php -------------------------------------------------------------------------------- /resources/views/components/apex-charts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/apex-charts.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/auth-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/badge.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/button/back.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/button/back.blade.php -------------------------------------------------------------------------------- /resources/views/components/button/icon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/button/icon.blade.php -------------------------------------------------------------------------------- /resources/views/components/button/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/button/index.blade.php -------------------------------------------------------------------------------- /resources/views/components/button/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/button/link.blade.php -------------------------------------------------------------------------------- /resources/views/components/card-tooltip.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/card-tooltip.blade.php -------------------------------------------------------------------------------- /resources/views/components/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/card.blade.php -------------------------------------------------------------------------------- /resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/chips.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/chips.blade.php -------------------------------------------------------------------------------- /resources/views/components/counter-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/counter-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/date-picker.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/date-picker.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dialog.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dropdown/item.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropupload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dropupload.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropzone.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/dropzone.blade.php -------------------------------------------------------------------------------- /resources/views/components/filepond.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/filepond.blade.php -------------------------------------------------------------------------------- /resources/views/components/fileupload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/fileupload.blade.php -------------------------------------------------------------------------------- /resources/views/components/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/forms/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/forms/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/bell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/bell.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/edit.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/eye.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/eye.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/menu.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/moon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/moon.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/sun.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/sun.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/trash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/trash.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/twitter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/twitter.blade.php -------------------------------------------------------------------------------- /resources/views/components/icons/x.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/icons/x.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-date.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input-date.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/input/date.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input/date.blade.php -------------------------------------------------------------------------------- /resources/views/components/input/group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input/group.blade.php -------------------------------------------------------------------------------- /resources/views/components/input/money.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input/money.blade.php -------------------------------------------------------------------------------- /resources/views/components/input/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input/select.blade.php -------------------------------------------------------------------------------- /resources/views/components/input/text.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/input/text.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/pos.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/layouts/pos.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/layouts/print.blade.php -------------------------------------------------------------------------------- /resources/views/components/loading-mask.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/loading-mask.blade.php -------------------------------------------------------------------------------- /resources/views/components/loading.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/loading.blade.php -------------------------------------------------------------------------------- /resources/views/components/media-upload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/media-upload.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/modal/card.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal/dialog.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/modal/dialog.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/navbar-pos.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/navbar-pos.blade.php -------------------------------------------------------------------------------- /resources/views/components/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/components/notification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/notification.blade.php -------------------------------------------------------------------------------- /resources/views/components/picture.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/picture.blade.php -------------------------------------------------------------------------------- /resources/views/components/printHeader.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/printHeader.blade.php -------------------------------------------------------------------------------- /resources/views/components/select-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/select-list.blade.php -------------------------------------------------------------------------------- /resources/views/components/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/select.blade.php -------------------------------------------------------------------------------- /resources/views/components/select2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/select2.blade.php -------------------------------------------------------------------------------- /resources/views/components/settings-bar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/settings-bar.blade.php -------------------------------------------------------------------------------- /resources/views/components/sidebar/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/sidebar/link.blade.php -------------------------------------------------------------------------------- /resources/views/components/spinner/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/spinner/index.blade.php -------------------------------------------------------------------------------- /resources/views/components/tab.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/tab.blade.php -------------------------------------------------------------------------------- /resources/views/components/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/cell.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/cell.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/heading.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/heading.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/row.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/row.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/sort.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/sort.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/tbody.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/tbody.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/td.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/td.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/tfoot.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/tfoot.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/th.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/th.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/thead.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/thead.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/tr.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/table/tr.blade.php -------------------------------------------------------------------------------- /resources/views/components/tabs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/tabs.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/card.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/colors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/colors.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/grid.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/grid.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/html-block.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/theme/img.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/img.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/layout.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/menu.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/newsletters.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/theme/row.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/row.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/slider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/slider.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/social.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/components/theme/tabs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/tabs.blade.php -------------------------------------------------------------------------------- /resources/views/components/theme/text.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/theme/text.blade.php -------------------------------------------------------------------------------- /resources/views/components/toggle-switch.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/components/toggle-switch.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/emails/ReturnMail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/ReturnMail.blade.php -------------------------------------------------------------------------------- /resources/views/emails/payment-purchase-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/payment-purchase-mail.php -------------------------------------------------------------------------------- /resources/views/emails/payment-sale-mail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/payment-sale-mail.blade.php -------------------------------------------------------------------------------- /resources/views/emails/purchaseMail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/purchaseMail.blade.php -------------------------------------------------------------------------------- /resources/views/emails/quotationMail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/quotationMail.blade.php -------------------------------------------------------------------------------- /resources/views/emails/resetRequest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/resetRequest.blade.php -------------------------------------------------------------------------------- /resources/views/emails/resetSuccess.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/resetSuccess.blade.php -------------------------------------------------------------------------------- /resources/views/emails/saleMail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/emails/saleMail.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/includes/main-css.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/includes/main-css.blade.php -------------------------------------------------------------------------------- /resources/views/includes/main-js.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/pos.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/pos.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/print.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/layouts/template.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/adjustment/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/adjustment/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/adjustment/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/adjustment/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/backup/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/backup/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/brands/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/brands/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/brands/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/brands/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/brands/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/brands/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/brands/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/brands/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/calculator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/calculator.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/categories/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/currency/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/currency/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/currency/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/currency/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/currency/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/currency/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/currency/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/currency/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/customers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/customers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/customers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/customers/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/customers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/customers/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/expense/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/expense/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/expense/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/expense/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/expense/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/expense/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/language/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/language/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/language/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/language/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/language/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/language/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pos/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/pos/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/printer/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/printer/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/printer/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/printer/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/products/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/products/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products/import.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/products/import.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/products/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/products/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/products/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/purchase/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/purchase/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/purchase/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/purchase/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/purchase/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/purchase/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/purchase/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/purchase/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/quotations/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/quotations/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/quotations/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/quotations/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/role/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/role/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/role/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/role/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/role/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sales/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/sales/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sales/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/sales/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sales/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/sales/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sales/recent.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/sales/recent.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sales/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/sales/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings/smtp.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/settings/smtp.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/settings/update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/suppliers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/suppliers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/suppliers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/suppliers/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/suppliers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/suppliers/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/users/profile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/utils/cache.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/utils/cache.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/utils/logs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/utils/logs.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/warehouses/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/livewire/warehouses/edit.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/bardcode-print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/bardcode-print.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/customer-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/customer-report.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/customers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/customers.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/expenses.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/expenses.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/paymentSale.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/paymentSale.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/paymentSaleReturn.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/paymentSaleReturn.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/payments_purchase.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/payments_purchase.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/products.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/products.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/purchase-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/purchase-report.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/purchaseReturn.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/purchaseReturn.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/quotation-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/quotation-report.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/sale-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/sale-report.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/saleReturn.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/saleReturn.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/supplier-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/supplier-report.blade.php -------------------------------------------------------------------------------- /resources/views/pdf/suppliers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/pdf/suppliers.blade.php -------------------------------------------------------------------------------- /resources/views/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/profile.blade.php -------------------------------------------------------------------------------- /resources/views/utils/alerts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/utils/alerts.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/routes/web.php -------------------------------------------------------------------------------- /screens/customer-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/customer-modal.png -------------------------------------------------------------------------------- /screens/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/dashboard.png -------------------------------------------------------------------------------- /screens/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/login.png -------------------------------------------------------------------------------- /screens/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/pos.png -------------------------------------------------------------------------------- /screens/product-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/product-modal.png -------------------------------------------------------------------------------- /screens/products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/products.png -------------------------------------------------------------------------------- /screens/purchase-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/purchase-create.png -------------------------------------------------------------------------------- /screens/sale-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/screens/sale-create.png -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/DashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/DashboardTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Adjustments/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Adjustments/Create.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Adjustments/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Adjustments/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Backup/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Backup/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Brands/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Brands/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Brands/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Brands/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Brands/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Brands/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Categories/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Categories/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Categories/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Categories/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Categories/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Categories/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Currencies/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Currencies/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Currencies/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Currencies/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Currencies/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Currencies/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Customers/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Customers/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Customers/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Customers/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Customers/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Customers/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Expenses/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Expenses/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Expenses/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Expenses/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Languages/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Languages/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Permissions/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Permissions/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Products/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Products/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Purchases/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Purchases/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Quotations/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakarialabib/myStockMaster/HEAD/tests/Feature/Livewire/Quotations/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Reports/IndexTest.php: -------------------------------------------------------------------------------- 1 |