├── .editorconfig ├── .env.example ├── .env.testing ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .rnd ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── Console │ ├── Commands │ │ └── MigrateInOrder.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── API │ │ │ └── V1 │ │ │ │ ├── BaseController.php │ │ │ │ ├── CategoryController.php │ │ │ │ ├── ProductController.php │ │ │ │ ├── ProfileController.php │ │ │ │ ├── TagController.php │ │ │ │ └── UserController.php │ │ ├── Admin │ │ │ ├── ClientController.php │ │ │ ├── HomeController.php │ │ │ ├── RoleController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── CustomerController.php │ │ ├── HomeController.php │ │ ├── InvoiceController.php │ │ ├── InvoiceimagesController.php │ │ ├── PurchaseDetailsController.php │ │ └── SerialController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Products │ │ └── ProductRequest.php │ │ └── Users │ │ ├── ChangePasswordRequest.php │ │ ├── ProfileUpdateRequest.php │ │ └── UserRequest.php ├── Models │ ├── Category.php │ ├── Customer.php │ ├── Product.php │ ├── PurchaseDetails.php │ ├── Role.php │ ├── Tag.php │ ├── User.php │ ├── invoice.php │ ├── invoiceimages.php │ └── serial.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── ProductRepositoryServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── ProductRepository.php │ ├── ProductRepositoryInterface.php │ └── ProductRepositoryStatic.php ├── Rules │ └── MatchOldPassword.php └── Traits │ └── Uuids.php ├── artisan ├── azure-pipelines.yml ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config.arg.txt ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── passport.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CustomerFactory.php │ ├── ProductFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_09_044534_create_roles_table.php │ ├── 2019_12_09_082630_create_role_user_table.php │ ├── 2019_12_09_094511_create_social_accounts_table.php │ ├── 2019_12_27_065818_create_products_table.php │ ├── 2019_12_27_070549_create_categories_table.php │ ├── 2019_12_27_070603_create_tags_table.php │ ├── 2020_01_08_113508_create_product_tag_pivot_table.php │ ├── 2021_09_22_135852__create_customers_table.php │ ├── 2021_09_22_135853_create_invoices_table.php │ ├── 2021_09_27_050112_create_purchase_details_table.php │ ├── 2022_02_01_030308_create_serials_table.php │ └── 2022_03_08_102340_create_invoiceimages_table.php └── seeders │ ├── CategoriesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── ProductsTableSeeder.php │ ├── SerialSeeder.php │ ├── TagsTableSeeder.php │ ├── UsersTableSeeder.php │ └── customerSeeder.php ├── docker-compose.yml ├── docker ├── Dockerfile ├── nginx │ └── conf.d │ │ └── app.conf └── php │ └── local.ini ├── nginx.conf ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── app.css.map ├── favicon.ico ├── fonts │ └── vendor │ │ └── @fortawesome │ │ └── fontawesome-free │ │ ├── webfa-brands-400.eot │ │ ├── webfa-brands-400.svg │ │ ├── webfa-brands-400.ttf │ │ ├── webfa-brands-400.woff │ │ ├── webfa-brands-400.woff2 │ │ ├── webfa-regular-400.eot │ │ ├── webfa-regular-400.svg │ │ ├── webfa-regular-400.ttf │ │ ├── webfa-regular-400.woff │ │ ├── webfa-regular-400.woff2 │ │ ├── webfa-solid-900.eot │ │ ├── webfa-solid-900.svg │ │ ├── webfa-solid-900.ttf │ │ ├── webfa-solid-900.woff │ │ └── webfa-solid-900.woff2 ├── forMDimgs │ ├── category.png │ ├── customers.png │ ├── dashboard.png │ ├── invoice.png │ ├── items.png │ ├── returns.png │ ├── serialnos.png │ ├── standarduser.png │ └── users.png ├── images │ ├── profile.png │ └── tree.png ├── imagesGt9yvs1Alv.png ├── index.php ├── js │ ├── app.js │ ├── app.js.LICENSE.txt │ └── app.js.map ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── js │ ├── Gate.js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ ├── Categories.vue │ │ ├── Customers.vue │ │ ├── Dashboard.vue │ │ ├── Developer.vue │ │ ├── ExampleComponent.vue │ │ ├── Invoice.vue │ │ ├── NotFound.vue │ │ ├── Profile.vue │ │ ├── Returns.vue │ │ ├── Tags.vue │ │ ├── Users.vue │ │ ├── passport │ │ │ ├── AuthorizedClients.vue │ │ │ ├── Clients.vue │ │ │ └── PersonalAccessTokens.vue │ │ ├── product │ │ │ ├── Category.vue │ │ │ ├── Products.vue │ │ │ ├── Serialnos.vue │ │ │ └── Tag.vue │ │ └── purchase │ │ │ └── PurchaseList.vue │ └── routes.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── backup │ │ ├── ar │ │ └── 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 ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ ├── master.blade.php │ └── sidebar-menu.blade.php │ ├── vendor │ └── passport │ │ └── authorize.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── CategoryTest.php │ ├── ProfileTest.php │ ├── UserTest.php │ └── VersionTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.env.example -------------------------------------------------------------------------------- /.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.env.testing -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.gitignore -------------------------------------------------------------------------------- /.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.rnd -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/MigrateInOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Console/Commands/MigrateInOrder.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/V1/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/API/V1/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ClientController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Admin/ClientController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Admin/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Admin/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/CustomerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InvoiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/InvoiceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InvoiceimagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/InvoiceimagesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PurchaseDetailsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/PurchaseDetailsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SerialController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Controllers/SerialController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Products/ProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Requests/Products/ProductRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Users/ChangePasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Requests/Users/ChangePasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Users/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Requests/Users/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Users/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Http/Requests/Users/UserRequest.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/PurchaseDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/PurchaseDetails.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/invoice.php -------------------------------------------------------------------------------- /app/Models/invoiceimages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/invoiceimages.php -------------------------------------------------------------------------------- /app/Models/serial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Models/serial.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ProductRepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/ProductRepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Repositories/ProductRepository.php -------------------------------------------------------------------------------- /app/Repositories/ProductRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Repositories/ProductRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/ProductRepositoryStatic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Repositories/ProductRepositoryStatic.php -------------------------------------------------------------------------------- /app/Rules/MatchOldPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Rules/MatchOldPassword.php -------------------------------------------------------------------------------- /app/Traits/Uuids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/app/Traits/Uuids.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/artisan -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/composer.lock -------------------------------------------------------------------------------- /config.arg.txt: -------------------------------------------------------------------------------- 1 | :style:hidden 2 | 3 | C:\Users\Abi\laravel-starter\InventoryServer.bat -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/passport.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/factories/ProductFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_09_044534_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_09_044534_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_09_082630_create_role_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_09_082630_create_role_user_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_09_094511_create_social_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_09_094511_create_social_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_27_065818_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_27_065818_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_27_070549_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_27_070549_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_27_070603_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2019_12_27_070603_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_08_113508_create_product_tag_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2020_01_08_113508_create_product_tag_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_22_135852__create_customers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2021_09_22_135852__create_customers_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_22_135853_create_invoices_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2021_09_22_135853_create_invoices_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_27_050112_create_purchase_details_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2021_09_27_050112_create_purchase_details_table.php -------------------------------------------------------------------------------- /database/migrations/2022_02_01_030308_create_serials_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2022_02_01_030308_create_serials_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_08_102340_create_invoiceimages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/migrations/2022_03_08_102340_create_invoiceimages_table.php -------------------------------------------------------------------------------- /database/seeders/CategoriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/CategoriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProductsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/ProductsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/SerialSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/SerialSeeder.php -------------------------------------------------------------------------------- /database/seeders/TagsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/TagsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/customerSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/database/seeders/customerSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/conf.d/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/docker/nginx/conf.d/app.conf -------------------------------------------------------------------------------- /docker/php/local.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/docker/php/local.ini -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/css/app.css.map -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.svg -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2 -------------------------------------------------------------------------------- /public/forMDimgs/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/category.png -------------------------------------------------------------------------------- /public/forMDimgs/customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/customers.png -------------------------------------------------------------------------------- /public/forMDimgs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/dashboard.png -------------------------------------------------------------------------------- /public/forMDimgs/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/invoice.png -------------------------------------------------------------------------------- /public/forMDimgs/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/items.png -------------------------------------------------------------------------------- /public/forMDimgs/returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/returns.png -------------------------------------------------------------------------------- /public/forMDimgs/serialnos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/serialnos.png -------------------------------------------------------------------------------- /public/forMDimgs/standarduser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/standarduser.png -------------------------------------------------------------------------------- /public/forMDimgs/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/forMDimgs/users.png -------------------------------------------------------------------------------- /public/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/images/profile.png -------------------------------------------------------------------------------- /public/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/images/tree.png -------------------------------------------------------------------------------- /public/imagesGt9yvs1Alv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/imagesGt9yvs1Alv.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/js/app.js.map -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/js/Gate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/Gate.js -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/Categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Categories.vue -------------------------------------------------------------------------------- /resources/js/components/Customers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Customers.vue -------------------------------------------------------------------------------- /resources/js/components/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/components/Developer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Developer.vue -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/components/Invoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Invoice.vue -------------------------------------------------------------------------------- /resources/js/components/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/NotFound.vue -------------------------------------------------------------------------------- /resources/js/components/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Profile.vue -------------------------------------------------------------------------------- /resources/js/components/Returns.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Returns.vue -------------------------------------------------------------------------------- /resources/js/components/Tags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Tags.vue -------------------------------------------------------------------------------- /resources/js/components/Users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/Users.vue -------------------------------------------------------------------------------- /resources/js/components/passport/AuthorizedClients.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/passport/AuthorizedClients.vue -------------------------------------------------------------------------------- /resources/js/components/passport/Clients.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/passport/Clients.vue -------------------------------------------------------------------------------- /resources/js/components/passport/PersonalAccessTokens.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/passport/PersonalAccessTokens.vue -------------------------------------------------------------------------------- /resources/js/components/product/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/product/Category.vue -------------------------------------------------------------------------------- /resources/js/components/product/Products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/product/Products.vue -------------------------------------------------------------------------------- /resources/js/components/product/Serialnos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/product/Serialnos.vue -------------------------------------------------------------------------------- /resources/js/components/product/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/product/Tag.vue -------------------------------------------------------------------------------- /resources/js/components/purchase/PurchaseList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/components/purchase/PurchaseList.vue -------------------------------------------------------------------------------- /resources/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/js/routes.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ar/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/ar/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/bn/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/bn/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/cs/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/cs/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/da/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/da/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/de/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/en/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/es/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fa/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/fa/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/fi/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/fr/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/hi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/hi/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/id/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/id/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/it/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ja/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/ja/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/nl/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/no/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/no/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/pl/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pt-BR/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/pt-BR/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pt/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/pt/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ro/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/ro/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ru/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/ru/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/tr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/tr/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/uk/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/uk/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-CN/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/zh-CN/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-TW/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/lang/vendor/backup/zh-TW/notifications.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/layouts/sidebar-menu.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/passport/authorize.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/vendor/passport/authorize.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/Feature/CategoryTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Feature/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/Feature/UserTest.php -------------------------------------------------------------------------------- /tests/Feature/VersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/Feature/VersionTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abi-collab/open-pos-inventory-laravelvue/HEAD/webpack.mix.js --------------------------------------------------------------------------------