├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── jsLinters │ └── jshint.xml ├── mbpos-1.3.iml ├── misc.xml ├── modules.xml ├── php.xml └── workspace.xml ├── .styleci.yml ├── LICENSE ├── SECURITY.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── helper.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Backend │ │ │ ├── Api │ │ │ │ └── VueApiController.php │ │ │ ├── BranchController.php │ │ │ ├── CategoryController.php │ │ │ ├── ChartApiController.php │ │ │ ├── CustomerController.php │ │ │ ├── DepartmentController.php │ │ │ ├── DesignationController.php │ │ │ ├── DraftController.php │ │ │ ├── EmployeeController.php │ │ │ ├── ExpenseCategoryController.php │ │ │ ├── ExpenseController.php │ │ │ ├── LanguageController.php │ │ │ ├── NoticeController.php │ │ │ ├── NotificationController.php │ │ │ ├── PaymentFromCustomerController.php │ │ │ ├── PaymentToSupplierController.php │ │ │ ├── ProductController.php │ │ │ ├── PurchaseController.php │ │ │ ├── PurchaseReportController.php │ │ │ ├── RequisitionController.php │ │ │ ├── RoleController.php │ │ │ ├── SellController.php │ │ │ ├── SellReportController.php │ │ │ ├── SellsTargetController.php │ │ │ ├── SettingsController.php │ │ │ ├── StockReportController.php │ │ │ ├── SupplierController.php │ │ │ ├── TaxController.php │ │ │ ├── TodoController.php │ │ │ ├── TrashController.php │ │ │ ├── UserController.php │ │ │ └── VeuApiController.php │ │ ├── Controller.php │ │ ├── DBCheckController.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── ActiveUser.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── LocalizationMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── BranchRequest.php │ │ ├── CategoryRequest.php │ │ ├── CustomerRequest.php │ │ ├── DepartmentRequest.php │ │ ├── DesignationRequest.php │ │ ├── EmployeeRequest.php │ │ ├── ExpenseCategoryRequest.php │ │ ├── ExpenseRequest.php │ │ ├── LanguageRequest.php │ │ ├── NoticeRequest.php │ │ ├── PaymentFromCustomerRequest.php │ │ ├── PaymentToSupplierRequest.php │ │ ├── ProductRequest.php │ │ ├── RoleRequest.php │ │ ├── SupplierRequest.php │ │ ├── TaxRequest.php │ │ └── TodoRequest.php ├── Models │ ├── Branch.php │ ├── Brand.php │ ├── Category.php │ ├── Customer.php │ ├── Department.php │ ├── Designation.php │ ├── Draft.php │ ├── DraftProduct.php │ ├── Employee.php │ ├── Expense.php │ ├── ExpenseCategory.php │ ├── Language.php │ ├── Notice.php │ ├── Notification.php │ ├── PaymentFromCustomer.php │ ├── PaymentToSupplier.php │ ├── Product.php │ ├── Purchase.php │ ├── PurchaseProduct.php │ ├── Requisition.php │ ├── RequisitionProduct.php │ ├── Sell.php │ ├── SellProduct.php │ ├── SellsTarget.php │ ├── Settings.php │ ├── Supplier.php │ ├── Tax.php │ └── Todo.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── User.php ├── artisan ├── backend ├── css │ ├── jquery.timepicker.min.css │ ├── mbposcustom.css │ ├── owl.carousel.css │ └── toastr.min.css ├── img │ ├── blank-thumbnail.jpg │ ├── en.ico │ ├── flag │ │ └── en.png │ ├── to-do-list.png │ ├── todo-list.png │ ├── undraw_posting_photo.svg │ └── user-placeholder.png ├── js │ ├── custom-toastr.js │ ├── custom.js │ ├── demo │ │ ├── chart-area-demo.js │ │ ├── chart-bar-demo.js │ │ ├── chart-pie-demo.js │ │ └── datatables-demo.js │ ├── jquery.timepicker.min.js │ ├── owl.carousel.js │ ├── partial │ │ ├── create-payment-to-supplier.js │ │ ├── dashboard.js │ │ ├── db-checking.js │ │ ├── product.js │ │ ├── purchase-report-dynamic-days.js │ │ ├── purchase-report-statistic.js │ │ ├── purchase-report-statistics-filter.js │ │ ├── sale-report-dynamic-days.js │ │ ├── sale-report-statistic.js │ │ └── sale-report-statistics-filter.js │ ├── script.js │ ├── timepicker.js │ └── toastr.min.js └── vendor │ ├── bootstrap │ ├── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ ├── chart.js │ ├── Chart.bundle.js │ ├── Chart.bundle.min.js │ ├── Chart.js │ └── Chart.min.js │ ├── datatables │ ├── dataTables.bootstrap4.css │ ├── dataTables.bootstrap4.js │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ ├── jquery.dataTables.js │ └── jquery.dataTables.min.js │ ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js │ ├── fontawesome-free │ ├── LICENSE.txt │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── package.json │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adobe.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dashcube.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── imdb.svg │ │ │ ├── instagram.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── uniregistry.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── haykal.svg │ │ │ ├── hdd.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── jquery-easing │ ├── jquery.easing.compatibility.js │ ├── jquery.easing.js │ └── jquery.easing.min.js │ ├── jquery │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ ├── parsley.js │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .jscsrc │ ├── .npmignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CNAME │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE-2.0.md │ ├── UPGRADE-2.1.md │ ├── UPGRADE-2.2.md │ ├── bower.json │ ├── bower_components │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── DOCS-LICENSE │ │ │ ├── LICENSE │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── js │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ └── less │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ ├── expect.js │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── support │ │ │ │ └── jquery.js │ │ │ └── test │ │ │ │ ├── common.js │ │ │ │ ├── expect.js │ │ │ │ └── index.html │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── src │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── support.js │ │ │ │ ├── swap.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ ├── accepts.js │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── mocha │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .mailmap │ │ │ ├── CONTRIBUTING.md │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── media │ │ │ │ └── logo.svg │ │ │ ├── mocha.css │ │ │ ├── mocha.js │ │ │ └── scripts │ │ │ │ └── ensure-compatible-npm.sh │ │ ├── sinonjs │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ └── sinon.js │ │ └── uwidget │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── uwidget.css │ │ │ ├── uwidget.js │ │ │ └── uwidget.less │ ├── dist │ │ ├── i18n │ │ │ ├── al.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.extra.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.extra.js │ │ │ ├── de.js │ │ │ ├── el.extra.js │ │ │ ├── el.js │ │ │ ├── en.extra.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.extra.js │ │ │ ├── fi.js │ │ │ ├── fr.extra.js │ │ │ ├── fr.js │ │ │ ├── he.extra.js │ │ │ ├── he.js │ │ │ ├── hr.extra.js │ │ │ ├── hr.js │ │ │ ├── hu.extra.js │ │ │ ├── hu.js │ │ │ ├── id.extra.js │ │ │ ├── id.js │ │ │ ├── it.extra.js │ │ │ ├── it.js │ │ │ ├── ja.extra.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.extra.js │ │ │ ├── lt.js │ │ │ ├── lv.extra.js │ │ │ ├── lv.js │ │ │ ├── ms.extra.js │ │ │ ├── ms.js │ │ │ ├── nl.extra.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt-pt.js │ │ │ ├── ro.extra.js │ │ │ ├── ro.js │ │ │ ├── ru.extra.js │ │ │ ├── ru.js │ │ │ ├── sk.extra.js │ │ │ ├── sk.js │ │ │ ├── sl.extra.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.extra.js │ │ │ ├── sr.js │ │ │ ├── sv.extra.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── ua.extra.js │ │ │ ├── ua.js │ │ │ ├── uk.extra.js │ │ │ ├── uk.js │ │ │ ├── zh_cn.extra.js │ │ │ ├── zh_cn.js │ │ │ └── zh_tw.js │ │ ├── parsley.js │ │ ├── parsley.js.map │ │ ├── parsley.min.js │ │ └── parsley.min.js.map │ ├── doc │ │ ├── about.html │ │ ├── annotated-source │ │ │ ├── base.html │ │ │ ├── constraint.html │ │ │ ├── defaults.html │ │ │ ├── docco.css │ │ │ ├── factory.html │ │ │ ├── field.html │ │ │ ├── form.html │ │ │ ├── main.html │ │ │ ├── multiple.html │ │ │ ├── public │ │ │ │ ├── fonts │ │ │ │ │ ├── aller-bold.eot │ │ │ │ │ ├── aller-bold.ttf │ │ │ │ │ ├── aller-bold.woff │ │ │ │ │ ├── aller-light.eot │ │ │ │ │ ├── aller-light.ttf │ │ │ │ │ ├── aller-light.woff │ │ │ │ │ ├── novecento-bold.eot │ │ │ │ │ ├── novecento-bold.ttf │ │ │ │ │ └── novecento-bold.woff │ │ │ │ └── stylesheets │ │ │ │ │ └── normalize.css │ │ │ ├── pubsub.html │ │ │ ├── remote.html │ │ │ ├── ui.html │ │ │ ├── utils.html │ │ │ ├── validator.html │ │ │ └── validator_registry.html │ │ ├── assets │ │ │ ├── docs.css │ │ │ ├── docs.js │ │ │ ├── docs.less │ │ │ ├── example.js │ │ │ ├── help.css │ │ │ ├── help.less │ │ │ └── spec-build.js │ │ ├── download.html │ │ ├── examples.html │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── custom-validator-events.html │ │ │ ├── customvalidator.html │ │ │ ├── events.html │ │ │ ├── multisteps.html │ │ │ └── simple.html │ │ ├── help.html │ │ ├── index.html │ │ └── tests.html │ ├── gulpfile.babel.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── extra │ │ │ ├── plugin │ │ │ │ └── bind.js │ │ │ └── validator │ │ │ │ ├── comparison.js │ │ │ │ ├── dateiso.js │ │ │ │ ├── luhn.js │ │ │ │ ├── notequalto.js │ │ │ │ └── words.js │ │ ├── header.js │ │ ├── i18n │ │ │ ├── al.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.extra.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.extra.js │ │ │ ├── de.js │ │ │ ├── el.extra.js │ │ │ ├── el.js │ │ │ ├── en.extra.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.extra.js │ │ │ ├── fi.js │ │ │ ├── fr.extra.js │ │ │ ├── fr.js │ │ │ ├── he.extra.js │ │ │ ├── he.js │ │ │ ├── hr.extra.js │ │ │ ├── hr.js │ │ │ ├── hu.extra.js │ │ │ ├── hu.js │ │ │ ├── id.extra.js │ │ │ ├── id.js │ │ │ ├── it.extra.js │ │ │ ├── it.js │ │ │ ├── ja.extra.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.extra.js │ │ │ ├── lt.js │ │ │ ├── lv.extra.js │ │ │ ├── lv.js │ │ │ ├── ms.extra.js │ │ │ ├── ms.js │ │ │ ├── nl.extra.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt-pt.js │ │ │ ├── ro.extra.js │ │ │ ├── ro.js │ │ │ ├── ru.extra.js │ │ │ ├── ru.js │ │ │ ├── sk.extra.js │ │ │ ├── sk.js │ │ │ ├── sl.extra.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.extra.js │ │ │ ├── sr.js │ │ │ ├── sv.extra.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── ua.extra.js │ │ │ ├── ua.js │ │ │ ├── uk.extra.js │ │ │ ├── uk.js │ │ │ ├── zh_cn.extra.js │ │ │ ├── zh_cn.js │ │ │ └── zh_tw.js │ │ ├── parsley.css │ │ ├── parsley.js │ │ ├── parsley │ │ │ ├── base.js │ │ │ ├── constraint.js │ │ │ ├── defaults.js │ │ │ ├── factory.js │ │ │ ├── field.js │ │ │ ├── form.js │ │ │ ├── main.js │ │ │ ├── multiple.js │ │ │ ├── pubsub.js │ │ │ ├── remote.js │ │ │ ├── ui.js │ │ │ ├── utils.js │ │ │ ├── validator.js │ │ │ └── validator_registry.js │ │ └── vendor │ │ │ └── inputevent.js │ ├── test │ │ ├── .eslintrc │ │ ├── runner.html │ │ ├── setup │ │ │ ├── browserify.js │ │ │ ├── dom_leak_check.js │ │ │ ├── expect_warning.js │ │ │ ├── node.js │ │ │ └── setup.js │ │ └── unit │ │ │ ├── base.js │ │ │ ├── extra │ │ │ ├── bind.js │ │ │ ├── comparison.js │ │ │ ├── dateiso.js │ │ │ └── words.js │ │ │ ├── field.js │ │ │ ├── form.js │ │ │ ├── multiple.js │ │ │ ├── parsley.js │ │ │ ├── pubsub.js │ │ │ ├── remote.js │ │ │ ├── ui.js │ │ │ ├── utils.js │ │ │ ├── validator.js │ │ │ └── validator_registry.js │ └── yarn.lock │ ├── select2 │ ├── i18n │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr-Cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js │ ├── sweetalert │ └── sweetalert.min.js │ └── toastr.js │ ├── .gitattributes │ ├── .gitignore │ ├── .jscsrc │ ├── .jshintrc │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build │ ├── toastr.css │ ├── toastr.js.map │ ├── toastr.min.css │ └── toastr.min.js │ ├── demo.html │ ├── gulpfile.js │ ├── karma.conf.js │ ├── nuget │ ├── content │ │ ├── content │ │ │ ├── toastr.css │ │ │ ├── toastr.less │ │ │ ├── toastr.min.css │ │ │ └── toastr.scss │ │ └── scripts │ │ │ ├── toastr.js │ │ │ ├── toastr.min.js │ │ │ └── toastr.min.js.map │ ├── toastr.1.0.0.nupkg │ ├── toastr.1.0.0.nuspec │ ├── toastr.1.0.1.nupkg │ ├── toastr.1.0.1.nuspec │ ├── toastr.1.0.2.nupkg │ ├── toastr.1.0.2.nuspec │ ├── toastr.1.0.3.nupkg │ ├── toastr.1.0.3.nuspec │ ├── toastr.1.1.0.nupkg │ ├── toastr.1.1.0.nuspec │ ├── toastr.1.1.1.nupkg │ ├── toastr.1.1.1.nuspec │ ├── toastr.1.1.2.nupkg │ ├── toastr.1.1.2.nuspec │ ├── toastr.1.1.3.nupkg │ ├── toastr.1.1.4.1.nupkg │ ├── toastr.1.1.4.1.nuspec │ ├── toastr.1.1.4.2.nupkg │ ├── toastr.1.1.4.2.nuspec │ ├── toastr.1.1.4.nupkg │ ├── toastr.1.1.4.nuspec │ ├── toastr.1.1.5.nupkg │ ├── toastr.1.1.5.nuspec │ ├── toastr.1.2.0.nupkg │ ├── toastr.1.2.0.nuspec │ ├── toastr.1.2.1.nupkg │ ├── toastr.1.2.1.nuspec │ ├── toastr.1.2.2.nupkg │ ├── toastr.1.2.2.nuspec │ ├── toastr.1.3.0.nupkg │ ├── toastr.1.3.0.nuspec │ ├── toastr.1.3.1.nupkg │ ├── toastr.1.3.1.nuspec │ ├── toastr.2.0.0-rc1.nupkg │ ├── toastr.2.0.0-rc1.nuspec │ ├── toastr.2.0.1.nupkg │ ├── toastr.2.0.1.nuspec │ ├── toastr.2.0.2.nupkg │ ├── toastr.2.0.2.nuspec │ ├── toastr.2.0.3.nupkg │ └── toastr.2.0.3.nuspec │ ├── package-lock.json │ ├── package.json │ ├── release checklist.md │ ├── tests │ ├── qunit │ │ ├── qunit.css │ │ └── qunit.js │ ├── toastr-tests.html │ └── unit │ │ ├── qunit-helper.js │ │ ├── toastr-tests.js │ │ └── x.js │ ├── toastr-icon.png │ ├── toastr.js │ ├── toastr.less │ └── toastr.scss ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── dompdf.php ├── filesystems.php ├── hashing.php ├── installer.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── mb_pos.sql ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_07_19_062040_create_categories_table.php │ ├── 2019_07_19_062520_create_suppliers_table.php │ ├── 2019_07_24_160645_create_branches_table.php │ ├── 2019_07_24_161212_create_customers_table.php │ ├── 2019_07_25_065748_create_products_table.php │ ├── 2019_08_04_130649_create_purchases_table.php │ ├── 2019_08_18_151245_create_purchase_products_table.php │ ├── 2019_08_27_105602_create_sells_table.php │ ├── 2019_08_27_105929_create_sell_products_table.php │ ├── 2019_08_27_132708_create_departments_table.php │ ├── 2019_08_27_132730_create_designations_table.php │ ├── 2019_08_27_133028_create_employees_table.php │ ├── 2019_09_11_143943_create_requisitions_table.php │ ├── 2019_09_11_152617_create_requisition_products_table.php │ ├── 2019_09_13_043346_create_sells_targets_table.php │ ├── 2019_09_13_140609_create_taxes_table.php │ ├── 2019_09_14_162002_create_settings_table.php │ ├── 2019_09_20_152155_create_drafts_table.php │ ├── 2019_09_20_152338_create_draft_products_table.php │ ├── 2019_10_07_232902_create_permission_tables.php │ ├── 2019_10_10_191350_create_expense_categories_table.php │ ├── 2019_10_10_203423_create_expenses_table.php │ ├── 2019_10_23_205324_create_payment_to_suppliers_table.php │ ├── 2019_10_24_124904_create_payment_from_customers_table.php │ ├── 2019_12_25_124451_create_notifications_table.php │ ├── 2020_02_07_194237_create_languages_table.php │ ├── 2020_02_13_112438_create_notices_table.php │ └── 2020_02_13_191539_create_todos_table.php └── seeds │ ├── AppSettings.php │ ├── DatabaseSeeder.php │ ├── EmployeeSeeder.php │ ├── PermissionSeeder.php │ └── RoleSeeder.php ├── favicon.ico ├── images ├── default-banner.jpg └── default.png ├── index.php ├── installer ├── css │ ├── sass │ │ ├── _variables.sass │ │ └── style.sass │ ├── scss │ │ ├── _variables.scss │ │ ├── font-awesome │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── style.scss │ ├── style.css │ ├── style.css.map │ ├── style.min.css │ └── style.min.css.map ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff └── img │ ├── background.png │ ├── favicon │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon-96x96.png │ └── pattern.png ├── mix-manifest.json ├── package.json ├── phpunit.xml ├── public ├── backend │ ├── css │ │ └── app.css │ └── js │ │ ├── app.js │ │ └── script.js └── mix-manifest.json ├── readme.md ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ ├── ExampleComponent.vue │ │ ├── category │ │ │ └── CategoryComponent.vue │ │ ├── department │ │ │ └── DepartmentComponent.vue │ │ ├── designation │ │ │ └── DesignationComponent.vue │ │ ├── expense-category │ │ │ └── ExpenseCategoryComponent.vue │ │ ├── purchase │ │ │ ├── EditPurchase.vue │ │ │ └── NewPurchase.vue │ │ ├── requisition │ │ │ ├── EditRequisition.vue │ │ │ ├── NewRequision.vue │ │ │ └── ShowRequisition.vue │ │ ├── role │ │ │ └── Role.vue │ │ ├── sell │ │ │ ├── EditSell.vue │ │ │ └── NewSell.vue │ │ ├── tax │ │ │ └── Tax.vue │ │ └── todo │ │ │ ├── TodoComponent.vue │ │ │ ├── TodoComponent2.vue │ │ │ └── TodoComponent3.vue │ └── script.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── installer_messages.php │ │ ├── pages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── master │ │ └── pages.php ├── sass │ ├── _buttons.scss │ ├── _cards.scss │ ├── _charts.scss │ ├── _drawer.scss │ ├── _dropdowns.scss │ ├── _error.scss │ ├── _footer.scss │ ├── _form.scss │ ├── _global.scss │ ├── _login.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _navs.scss │ ├── _profile.scss │ ├── _purchase.scss │ ├── _select-2.scss │ ├── _settings.scss │ ├── _table.scss │ ├── _utilities.scss │ ├── _v-select.scss │ ├── _variables.scss │ ├── app.scss │ ├── navs │ │ ├── _global.scss │ │ ├── _sidebar.scss │ │ └── _topbar.scss │ ├── pos.scss │ ├── product.scss │ └── utilities │ │ ├── _animation.scss │ │ ├── _background.scss │ │ ├── _border.scss │ │ ├── _display.scss │ │ ├── _progress.scss │ │ ├── _rotate.scss │ │ └── _text.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── backend │ ├── branch │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── category │ │ └── index.blade.php │ ├── customer │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── dashboard.blade.php │ ├── department │ │ └── index.blade.php │ ├── designation │ │ └── index.blade.php │ ├── employee │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── expense-category │ │ └── index.blade.php │ ├── expense │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter-from.blade.php │ │ └── index.blade.php │ ├── language │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── translate.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── assets │ │ │ ├── css.blade.php │ │ │ └── js.blade.php │ │ └── particles │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ └── sidebar.blade.php │ ├── notice │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── payment │ │ ├── customer │ │ │ ├── filter-from.blade.php │ │ │ ├── filter.blade.php │ │ │ └── index.blade.php │ │ └── supplier │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── filter-from.blade.php │ │ │ ├── filter.blade.php │ │ │ └── index.blade.php │ ├── pdf │ │ ├── barcode-for-product.blade.php │ │ ├── layouts │ │ │ ├── css.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── invoice-header.blade.php │ │ │ └── report-header.blade.php │ │ ├── payment │ │ │ ├── customer.blade.php │ │ │ └── supplier.blade.php │ │ ├── purchase │ │ │ └── invoice.blade.php │ │ ├── reports │ │ │ ├── purchase │ │ │ │ ├── product-wise-purchase.blade.php │ │ │ │ ├── purchase-summary.blade.php │ │ │ │ ├── purchases.blade.php │ │ │ │ └── statistics.blade.php │ │ │ ├── sells │ │ │ │ ├── product-wise-sell-report.blade.php │ │ │ │ ├── sell-summary.blade.php │ │ │ │ ├── sells.blade.php │ │ │ │ └── statistics.blade.php │ │ │ └── stock │ │ │ │ └── all-branch.blade.php │ │ ├── requisition │ │ │ └── invoice.blade.php │ │ └── sell │ │ │ └── invoice.blade.php │ ├── product │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── purchase │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter-form.blade.php │ │ ├── filter-result.blade.php │ │ ├── index.blade.php │ │ ├── purchases-data.blade.php │ │ └── show.blade.php │ ├── report │ │ ├── purchase │ │ │ ├── partial │ │ │ │ ├── hidden-filter-value-pdf.blade.php │ │ │ │ └── nav.blade.php │ │ │ ├── product-wise │ │ │ │ ├── filter-form.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── table-data.blade.php │ │ │ ├── purchases │ │ │ │ ├── filter-form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── purchases-filter-result.blade.php │ │ │ ├── statistics │ │ │ │ ├── dynamic-days.blade.php │ │ │ │ ├── filter-form.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── more-filter.blade.php │ │ │ │ └── table-data.blade.php │ │ │ └── summary │ │ │ │ ├── filter-from.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── table-data.blade.php │ │ ├── sell │ │ │ ├── partial │ │ │ │ ├── hidden-filter-value-pdf.blade.php │ │ │ │ └── nav.blade.php │ │ │ ├── product-wise │ │ │ │ ├── filter-from.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── table-data.blade.php │ │ │ ├── sells │ │ │ │ ├── filter-from.blade.php │ │ │ │ ├── sells-filter-result.blade.php │ │ │ │ └── sells.blade.php │ │ │ ├── statistics │ │ │ │ ├── dynamic-days.blade.php │ │ │ │ ├── filter-from.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── more-filter.blade.php │ │ │ │ └── table-data.blade.php │ │ │ └── summary │ │ │ │ ├── filter-from.blade.php │ │ │ │ ├── filter-result.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── table-data.blade.php │ │ └── stock │ │ │ ├── filter.blade.php │ │ │ └── index.blade.php │ ├── requisition │ │ ├── create.blade.php │ │ ├── data.blade.php │ │ ├── edit.blade.php │ │ ├── filter-form.blade.php │ │ ├── filter-result.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── role │ │ └── index.blade.php │ ├── sell │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── sells-target │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── settings │ │ ├── change-email.blade.php │ │ ├── currency.blade.php │ │ ├── general.blade.php │ │ ├── partial │ │ │ ├── nav.blade.php │ │ │ └── user-account-nav.blade.php │ │ ├── password.blade.php │ │ ├── prefix.blade.php │ │ ├── profile.blade.php │ │ └── user-permission.blade.php │ ├── supplier │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── tax │ │ └── index.blade.php │ ├── todo │ │ └── index.blade.php │ ├── trash │ │ ├── branches.blade.php │ │ ├── categories.blade.php │ │ ├── departments.blade.php │ │ ├── designations.blade.php │ │ ├── expense-categories.blade.php │ │ └── taxes.blade.php │ └── user │ │ ├── create.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── vendor │ └── installer │ │ ├── environment-classic.blade.php │ │ ├── environment-wizard.blade.php │ │ ├── environment.blade.php │ │ ├── finished.blade.php │ │ ├── layouts │ │ ├── master-update.blade.php │ │ └── master.blade.php │ │ ├── permissions.blade.php │ │ ├── requirements.blade.php │ │ ├── update │ │ ├── finished.blade.php │ │ ├── overview.blade.php │ │ └── welcome.blade.php │ │ └── welcome.blade.php │ └── welcome.blade.php ├── robots.txt ├── 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 │ │ ├── 03d9972bb94b05b61958bc5eaa23988e36c4f4fd.php │ │ ├── 04dfe16b872224ecbf3f0e1d4b3c446cac681703.php │ │ ├── 05422ddd0bd710f82f3cb8872514a06d212909cf.php │ │ ├── 059ea8f5e86c6a3dcfd4595dbdca943928becc1a.php │ │ ├── 06e8033378fc95feae200942d28417fb23fa3e52.php │ │ ├── 07023262ebd591498395f29387699566fee2b838.php │ │ ├── 07b50439d1460985fba36e4736ce50605e696546.php │ │ ├── 089cc2bec02319943f5303746fed2e94613d71e9.php │ │ ├── 08a2aed86c6d0b8d9b53736dce42d0caddfe3b6f.php │ │ ├── 093999b5146e8db91eecee0480635cc422f44a14.php │ │ ├── 098dcc9b072c805ccacf9ac78b4eed037e6382ce.php │ │ ├── 09f37fa29b68cdf415cdf5bf466c0503e9e9490b.php │ │ ├── 0ab3edec8b270a3871e228e0af1646ee68cd0a7f.php │ │ ├── 0bbcf9a324b48198d9e5b2980164c87c6e1d519b.php │ │ ├── 0bc7cd65a0f7aa5980993b11e4ec54b6718514f1.php │ │ ├── 0c22634fe1e9b74548859146ddb5f4abfe5d1336.php │ │ ├── 0dd83f43f686b5cdb61fe37a1e06345e76d0842f.php │ │ ├── 0f2c65b73612acfbfe00136a7df00b8bfcb208cf.php │ │ ├── 0f5f6dbc2fed5438d1b3a52c2ce411277bc74c23.php │ │ ├── 10c228d7a482c70223c4dbab292128047edcc9c0.php │ │ ├── 10ef4d5080d2c444e3f23c82bbd172f37724df7b.php │ │ ├── 10f33b575e2ac4e8990415e0e40d705720918762.php │ │ ├── 11bc1e359fcfcb92ec4d9cf476aafab86ed956ac.php │ │ ├── 12efba2fa29ed3928d2fd022b1a776100c2af034.php │ │ ├── 15169f37055f1a8a480091ae7d3bcc52819dbf02.php │ │ ├── 153cc38052b265ffd93334c795d4b75e7beb8950.php │ │ ├── 19f1651eb96358a94bd6f52214a5db060344a37c.php │ │ ├── 1a039a8aa20bada992f5f89b0c97aeb4436f3c29.php │ │ ├── 1a595a5f29ad6346155f29fbcc7151e898c14f87.php │ │ ├── 1c8049b0329055350c555458124a0e9f790629b4.php │ │ ├── 1cf78096efbd1b5ffda96be73b12a399cd265613.php │ │ ├── 1e40b89534038282702a8cdb6b6844a8c721c482.php │ │ ├── 1e4bb289b19a05be629a88be08bf1ce0ef2fd76b.php │ │ ├── 1f35fa2eba424fe054c080daf8fd3aae363b1858.php │ │ ├── 1fc5e5d556a02ff2fa4571994031b0c5a634af2d.php │ │ ├── 23180da0fe19b0c0202f2931319da53bc6a8d12a.php │ │ ├── 2333ba1ade65dfe774e14169972f13984284a8dd.php │ │ ├── 2358ee833bf1feb026e9f5fd66e5bffec0efa56f.php │ │ ├── 23983252459fe667b72656434d17f3655aef5028.php │ │ ├── 24f2efb3d0a611c9e799b6586dc5498fd47e4265.php │ │ ├── 250a038bc3482e01558a7aeedfac383226b6b67e.php │ │ ├── 252100a5aba58b6f3429e93af5132b6ec339fa18.php │ │ ├── 252dfe09c2a3b2106d33e3bc2e3befebde6c48d4.php │ │ ├── 25ad93bd7af029e10e46eefb66fac749a7693952.php │ │ ├── 26e70b7d0d749e96846b381f995f1dc6a5a93d2e.php │ │ ├── 281cd5295f1d75bd66f6ef0d5182159058bc36e7.php │ │ ├── 28f7766f737a06bf6292a097988fc269a10a661c.php │ │ ├── 2951dbf85c576df9d5c4f0e2480b6a4b7dbf91e6.php │ │ ├── 297d7b59e8f54eb201d89c616ec6c17adcecffcc.php │ │ ├── 2ac0272cd0a14c6acd8cc7da8b1a09bbe57bdb99.php │ │ ├── 2bacf77cfc6d2c7aebd994582715964a5da7aff2.php │ │ ├── 2c3a5493cdd5e51c1d499ff2988ce07c17348430.php │ │ ├── 2eb901e8de9a45876b81fadb6f769d627fafbcbc.php │ │ ├── 2f169ae9238deca14c553209ae01e56dc376a255.php │ │ ├── 2f318be0d020a85bc6cd850a86fad95e1753d848.php │ │ ├── 2f472d07f12b0cd6ec37db28d3f74e069befb2f7.php │ │ ├── 2f96b120894b032f87d2c00b06b90032f7acd267.php │ │ ├── 2fe4a1f11f970513447e1e6a805f36ab96303423.php │ │ ├── 30942230c479cf7a2502eb0a9eff327d7360dc48.php │ │ ├── 309b09f12950de9cfadd1b401616986f7a2b88a1.php │ │ ├── 320d600cfadeb1b766c2e502f40bf1560c723e20.php │ │ ├── 327e72e331bb0bd228606999a553752328b4fc25.php │ │ ├── 3434464b52d8dd49cc4f64980223cbc90a6965a1.php │ │ ├── 35cbd4c810d1e2b5eea75079de5cc6bb64b3b019.php │ │ ├── 36bd6c6e3b655573558fd505db583440f9301787.php │ │ ├── 36d705758aed1793c86cf7d25a5643e95a048a25.php │ │ ├── 38c672e4a6b4719cf4ddc51986c91135ce5dfb83.php │ │ ├── 3a4c38020eb524fb9e9633e0ed7de88cdfc78160.php │ │ ├── 3a4e5a4f1eb477f35bdc36013cb6c15d2d5ea8f5.php │ │ ├── 3b229aac5f0700d47e3cbe176559ee1bb4de8f16.php │ │ ├── 3ba62d9115c6dc512eb9db748511fd990240254c.php │ │ ├── 3d534dc5b5adc3fd63fe288a242ac5d7fd042bf5.php │ │ ├── 3ecadafc46d948723d4d2f5aa4458d5e566d09e0.php │ │ ├── 3f83d7f3cbaf5af423537db95f72cd0ebdefd062.php │ │ ├── 416ebab5dc1337f80407983fd5c4eaa9789d4b01.php │ │ ├── 41a3a0c71bf7800e5b7685582486ee83b3b1ea37.php │ │ ├── 43ae7f1309e54601ca5a307f929ea2c2078a4ca6.php │ │ ├── 43f1d6623b430515eef972fefa15a616ab9e9ec9.php │ │ ├── 440e86edf5d723b158f3e6860050aaac6a000b0c.php │ │ ├── 449853f04e2b85a3b6c4e5b6c2988269655d5fa3.php │ │ ├── 4563100988a5eeae914dd577a38d28413efdf462.php │ │ ├── 4639b2fbb1e72c78156286b6ec4d196048e13b9e.php │ │ ├── 46628f86a8258e253348a0b14d50cdb085ae811c.php │ │ ├── 475d9620b6387eed1076892c575b3d7a9b504786.php │ │ ├── 48713660b9acfbcbd39bdf975bf42aa0867d405b.php │ │ ├── 49266f80a7d497f8b3c11bc87cc5b627ea56f0ac.php │ │ ├── 4b65e0f13c644f2a78e63a940af22184d2624dbc.php │ │ ├── 4b9b4cf99ca4465a019712cafe4bccd20392c4c7.php │ │ ├── 4bf6d394a7dc938c4e702a8d3360e2a3d1ccd2fa.php │ │ ├── 4c2856fbb4c49f9d74bc388077b0422d893b6d57.php │ │ ├── 4d48120c417cf8a02689ee0bce4ae81de5326ef4.php │ │ ├── 4ff65ba555fcab31208c8f0048bc55f6194ffe4c.php │ │ ├── 5411943afaa5f54c66375cab795792463403d5ca.php │ │ ├── 546fb5c9e90cd32aad5db81b4815a2409888d7db.php │ │ ├── 57125d4ec27406afbf324277c7f36769a5c9d719.php │ │ ├── 58d6fc10ae3c2502c4f9daed2d74c98e21e27d5e.php │ │ ├── 58e0e28998dfbb34b55b2a0ee31b36ab3ff33ef7.php │ │ ├── 5a597d04216547b0f619aff584ca51a15348a272.php │ │ ├── 5af1a18c09cc89f1edf5b8847ad3a0a6e6b3b82b.php │ │ ├── 5b10150895ce03bb11fe2a690eca730ad6277e48.php │ │ ├── 5b676d2a3cb21194cd4089df794a84290bb8a212.php │ │ ├── 5c87a6c4c37160bededd3acb4eacd25fad1387d9.php │ │ ├── 5cb67521c6bb8844afc0ea909953aaa873609a6c.php │ │ ├── 5d044a7ecda71358076263342c5731740ed21541.php │ │ ├── 5d3dee9c1b1c000dc455ca1b40df1b9a13944272.php │ │ ├── 5dcfd6118e36018ba155d1ca4884f9f94fe67f09.php │ │ ├── 5e50921128c701dbf8c70a697567efbc839af097.php │ │ ├── 5f71c2d16ba53b71a7e06c0196e9eb982d856623.php │ │ ├── 5fd08faebcefd5055185d56ee386a1105c7f1e4e.php │ │ ├── 6044e61891f0cf2b7895848ba19ed716262a6537.php │ │ ├── 613f2b1bd070360cdd4f1c74dc8d0c6bcb7a97da.php │ │ ├── 65f08d639bfa0e53406c45181156d902113f4c6e.php │ │ ├── 663950f7434d06c71b8c389ed2ed90af26c0794a.php │ │ ├── 668362ed937e371cff7bad01fd50720f0832a228.php │ │ ├── 686da261570341cac0c5627bb4406d4856b0e6b3.php │ │ ├── 6ac83930ee4733476938b33d6d7816eff88283e8.php │ │ ├── 6b5308ebf24131d803768524facac86e49c6e9fe.php │ │ ├── 6d8eeba236cca899361af293bcbd31ac2ff0c258.php │ │ ├── 6e8ddc2b3a0662208031cc9ff4ec0146f26eb6af.php │ │ ├── 70633436f6ee61aa373cbe32e9de3d8a5cd316c6.php │ │ ├── 742b12cf58219a36bb432280a7aa445cf8bdef29.php │ │ ├── 76464211b7df6d6f37592ce99ba663d6e445c49c.php │ │ ├── 77eb401a65e751fa0e416cd239dbf01834193ecd.php │ │ ├── 7874c3c26bf82aedb41ff253e7393cbfba8eac7c.php │ │ ├── 7b63054fc53f45969eab0475454c4530aed9cf83.php │ │ ├── 7c677326f2f741a1155e920ec1b8928af66e259a.php │ │ ├── 7e7bb40abb87eebdc8ad1b55ecb7038c3022ef8a.php │ │ ├── 81078e3dd3bae968cab10396e2c386183b77f2e9.php │ │ ├── 81348a8b524273b4726045d5dc731b7393aed007.php │ │ ├── 823ff5627c412c78c73357dbf593abbeec99beaa.php │ │ ├── 82aa08273cf90dfe446e9ae1440216c1a5c489db.php │ │ ├── 84a23ad7f4f4b7f2df6bb05cb06b5976b5d8a60f.php │ │ ├── 855bd78e39df9604ba0605181e49351bdbb9f9ee.php │ │ ├── 8613de54bd4e55c14ffa4efcaf292c0ec27a6f6e.php │ │ ├── 8640dd0194e3321ffae9379c6ef9e8318cbe0ca5.php │ │ ├── 88cfc74fc839a154dcd4b20afa989a19ddec1580.php │ │ ├── 88d2177439e5490ade38824bfbeacc3fb77e3d9e.php │ │ ├── 896a5c10713a5a1aeb29b044a16e5ecebbb03129.php │ │ ├── 89e7a562ff3ddd945bd34ee890e14a4faeeb6088.php │ │ ├── 8a4bc64d75b955230375caf698ec6dbc0ee66dc8.php │ │ ├── 8afbe4a8276171ea9c62f1bfebc01b616e6bff9a.php │ │ ├── 8b3915810298f47edf5c4cfd460e1a8328a699f2.php │ │ ├── 8d0e9d5dd261cf8ec6c73137809dc4563c0e244f.php │ │ ├── 8d7e253add2f186ec9e0623b7cc7a0fca8c6ce1b.php │ │ ├── 8e244cdfb1bad876b13155ecc7a911d94b6bd349.php │ │ ├── 90abf5ef7c48868483b87e6fd4676e12e964cd60.php │ │ ├── 90ced3a0fb6dfaab9812c38fe12c4bda124dd4f9.php │ │ ├── 9199c1715a22511e9781a21ae54fb07175ecf2c8.php │ │ ├── 91f29d657c4f912d2e31fe94240228f5913e6774.php │ │ ├── 94e2d94f4f7a180b228c0339a6597fd45adb2b19.php │ │ ├── 969172905ad5e441a85fe38bdb426d2671865065.php │ │ ├── 96b86b433e3c3c87db86ede274c77b99d888dd58.php │ │ ├── 96ba588eaf919f571b862becadf65e60776eee5a.php │ │ ├── 9a8b7e4c9e2cdf7ff56024a2e045cc8b6d7b7de7.php │ │ ├── 9b41a9bd5ad24112a61a59ba16617dbbf8028f9a.php │ │ ├── 9ba531bf68996080f85e3805098ab03f8872f8b7.php │ │ ├── 9bcef277f1b5f1b51b3de6fe0ded1a5a4fc34b89.php │ │ ├── 9d9652dc4a29c5178980e83989517d7c39b51878.php │ │ ├── 9e6818d5af24f8c00f80893b21d488706dff9f79.php │ │ ├── 9f08d126de7d07af7f903a63fbd63c66b2f2ccde.php │ │ ├── 9f5c3d142dc30dc87a8e68525987384d561a1ab5.php │ │ ├── 9fd1191bdbd4cdb98c7636abb7ffea651d1881dc.php │ │ ├── 9fd8ba85a7f46f261d12d5aab60d83079d7531c4.php │ │ ├── a0735df07573b4d4bb229576ea56791386c55997.php │ │ ├── a0e2880b6a7a8361ca2e314aff16872414ee2e87.php │ │ ├── a3fe59e02cbd2e3d55b1918602d92005985fb486.php │ │ ├── a581e972eca7f264ca202a7c3ef5bc51a15f9d21.php │ │ ├── a82c5778f06901f35fba3d3d845781ad094c27ad.php │ │ ├── a83c1c6174087773e89a30c78b7eb9935e7f7a9c.php │ │ ├── a9878ca7bd12fc69306b94137e5989e9d8addd95.php │ │ ├── aa4785db4fbc31e8ad72dbdfe6653cb24c38c9c1.php │ │ ├── aaa56308bbf864689516b0fe49abe7f77878d357.php │ │ ├── ab48f46d12676cecaba9fd8abd5b8343ea6c147c.php │ │ ├── abfe05129e2ad2ae7c33211bf671f3b5fffc934f.php │ │ ├── ac958c9944d698af6007ef77fdfbaba173d6bd64.php │ │ ├── acb299e5199e6bda9465d63193de9403d9695aa5.php │ │ ├── ad4ef3f2a30495f3c230a0714698ecca70b436a7.php │ │ ├── ad99d7198b9589e3cec7397919e5c5e2524080a1.php │ │ ├── ad9ba5b8d085f25d6c7839479f759123396ca464.php │ │ ├── af45f628239a94afd57d48eaeb031a46f3e609b6.php │ │ ├── af781bfc28ef6ecd3e5b8a8b4aaac17f96813c22.php │ │ ├── afd7cc5708dbe0c7f9e93570cac4488b005067cb.php │ │ ├── b0c57908c29ff08ea0c5292c02e994da1deeeea7.php │ │ ├── b31070c7be639ea8e1c43ecdb5a6850618c1f5b1.php │ │ ├── b38cd490713914826a653b7b33b76882a654d17f.php │ │ ├── b3ab004c776933d5fd4ae1be1b9d144fd1f3fa9b.php │ │ ├── b5b264eca135a5efd84c1d3d6816b05beea9ce37.php │ │ ├── b9bdf0d9e2d8875fae27cf23da418654a81651f9.php │ │ ├── b9e181d9b3ed7bfa627ffacc9223e795eea47022.php │ │ ├── ba6bb9c7266b93a62ec4d27643a0108f07809e6a.php │ │ ├── ba9ad65dcd40a949604314343ba3fc2061e2c53c.php │ │ ├── bc09ab7acee2cbc1aff904a151ded94b64f609c4.php │ │ ├── bc2170c26330915a450f6a9c0994ca2ad725d406.php │ │ ├── bc865fa9549b859bf739e136d2c2a3fcfbbbe19a.php │ │ ├── bd223af0013494fd79a83eea4ac1ffe5ef6ca266.php │ │ ├── be8aa1e6d0c72ea04b4483dbf2d5827759f4967b.php │ │ ├── bee036892d3316d521e2435b47e71484eb086e42.php │ │ ├── bf2ba522dd514e043cc0cebb6cdb9dfd299f7390.php │ │ ├── bfdb9640c215089b7ef62c1ac2a460d9c2611a43.php │ │ ├── c11dab9b745ebd487ef95bdd1c5c01c4344eed83.php │ │ ├── c28eab6548774136ba1b886ecb76016eca844a3f.php │ │ ├── c4cfe657c90c7b6be9514a2bd3cdbd52dcff14a0.php │ │ ├── c4ddd450f0bafc4d9073d62d1d0f54ae8b01adc0.php │ │ ├── c5e14bd0f4d32d7a2bb536b22c80fee10181401c.php │ │ ├── c617eda114f495cd816d656e9d8427826abe1a4c.php │ │ ├── c719602772413db9ccf97cdf2efb23731bba9a16.php │ │ ├── c725a87bbe32c3be7fb64d1e47f524b29a9e5fbc.php │ │ ├── c8fa3264b28a944d694ba6452f115e69f162bc51.php │ │ ├── c9d557af95d0310c55125dbb4d36b95f959d902b.php │ │ ├── caa80a6a7bd20fa9d83b50e4636ced66b63829d6.php │ │ ├── cae499496659ac669f5dec79d7f1851516e90f44.php │ │ ├── cae87e6706e570bdb4e983746d8c14d5002c8d70.php │ │ ├── cb9c8783c0a9f36eac66993bd56a4f3798e700ef.php │ │ ├── cbdaba95d06cc743696adfe09129a2d56bd75832.php │ │ ├── cc8c2534731226ca5a0f847efc5af4b52dfc39a1.php │ │ ├── cc9373f96025c71f899634b969f33359337518c1.php │ │ ├── ce353112565ad17422840dd2f0160b3557020144.php │ │ ├── ceaaf13dc9eaacfc8f7cd86e0e18aafbb3e60a94.php │ │ ├── cf5de6f78ed264abf57923df321cc3bc33a986f1.php │ │ ├── cf61512f6fd2bb6b7758c762952688d724e15a69.php │ │ ├── cfa12142bba1fddeac337aefae433e5750270a5c.php │ │ ├── cfc5b5b5c37fd06a9c294aa502f04391c09da280.php │ │ ├── cfcbd597add4619057079efa7ba3a53bc55b6e38.php │ │ ├── d107101c51a3906c944ccecbf57bbfceaf7ed6ed.php │ │ ├── d1a71d282dc782baa2fafe42c9a8bffc6c202918.php │ │ ├── d1faf8d74f45873b6297142943c6d430cfe66a0f.php │ │ ├── d2928a6ee9e2984934e50091a269f4afbe2e864e.php │ │ ├── d2df6708258e01aacfc7f7ecaad13422d87a8eb9.php │ │ ├── d3eb11d6ba56d49969c98a3dfb9d5455bfc660dd.php │ │ ├── d4a704aaf2f4c0e04428ecca3f2507939436120d.php │ │ ├── d4e07056cfb284250f38387746044849e5e2cbdf.php │ │ ├── d622a7f9156256627e2750c56d3fbaffe7ad7141.php │ │ ├── d6436541d0844c6c6e244dca24b88a4bccd37ecb.php │ │ ├── d91bde384d3ec13119f2af1535077008b20860c4.php │ │ ├── d9e87f24967ba1354757ec3a32faa2f68494bb33.php │ │ ├── dba368646cf001b42f3b0e2861a3e761215fbca6.php │ │ ├── dbd816521dc3b9e2c4ab5d544eb9365542062cf5.php │ │ ├── dcd3db66adedb04abb94651aa4c1033ebfd3025a.php │ │ ├── dce1052d1ca65d04f354d26d5ccc162eb8d61d75.php │ │ ├── dd6fc43d7b7c239fda3dba9e588537640c73d945.php │ │ ├── dd77151003e5aafb2b4aa55c08bb77b27ba77fe0.php │ │ ├── dd7e44dfd165c0a963f8c282e0827d68e023299a.php │ │ ├── de2d7993c24d96ec5b9ba9265bf4e01c9cc4cd13.php │ │ ├── dee3a29faa365abd21fd3e95fd60fcbc30ce647d.php │ │ ├── df2c7dd1964fc4adf7a03038de3d50d795a24b12.php │ │ ├── df9db6e46e40b3b4f368937e6964b57068a48d8f.php │ │ ├── e00d7e686308e39ceba9ef52e4f3aa1878ca7668.php │ │ ├── e10801eb52f4c812de8f1be81ff201753935bb28.php │ │ ├── e25c394ca18d8ced3e85a2031423a6a155397a3f.php │ │ ├── e34086adcba04f7b1baccf3ee7e9da52a4423fde.php │ │ ├── e3599da90068a8618e699747b7fe218dee7a0571.php │ │ ├── e3718d203a89676921f6d2cdd375c40525471515.php │ │ ├── e3c28a6d7e0a9a8e7ef4d253427e0f4fcf3f8661.php │ │ ├── e42574cd853c80aa6ebd931f0c45b12681a9d29b.php │ │ ├── e51a648a1b3e032eb326c7fea5159acedfb5998c.php │ │ ├── e5df01a6d2050dab8b79d2ffee52b04b77dc6e77.php │ │ ├── e6fa13b28860d9aa93fc35e1ee76ea9efd132faa.php │ │ ├── e73c20734b3f05e9728573cb2bf9684a44ae1047.php │ │ ├── e74fa0b717cbd4c07e9620e7ecc02e9938aeef9a.php │ │ ├── e7dc8dcfc3684b79e924a5b9e78a2b049d00ab02.php │ │ ├── e8b93767af88bda46f5b001e7a8503d97d3a9243.php │ │ ├── e9020dc690c42116b38e61311f7824aec77f4037.php │ │ ├── ea53915cd7ecdd4c658a3bbcb9a93973be9beeb6.php │ │ ├── eafd6e5e75e49d785179eb1b15d64c3a43cbdd28.php │ │ ├── eba7e9eb627635834ae7fe25bcc4759476d66ddd.php │ │ ├── ed2fb0d8902a49416ade3dec9785564d6dad04ae.php │ │ ├── edfdcbaa31e72c19cea2b1eecaf71798e849ae6d.php │ │ ├── efe8e323602e653a4e0a09608df853329cabd280.php │ │ ├── f1990b876c3b3ed560119d67c55ec589028c1920.php │ │ ├── f483f6e1099f7901679267188b6620d43d2f1056.php │ │ ├── f58d3a95fa15a0fed8b37e5417f55d2b5c9121ea.php │ │ ├── f944ac44c52eef0fd0eb3ddad32456152a8c956d.php │ │ ├── fa70ed05ed6fcc330f2a43c9880b3bfe9adecba0.php │ │ ├── fc4b0a395beedcf4fcb19ba8caed4f1ba4181d2f.php │ │ ├── fc78012982782837f87caff0066db804d3a6af9c.php │ │ ├── fdacfbeb7e626517291286f827537e0fe88b84b0.php │ │ ├── fdc0310e615e4b045eb164855bd501ed2847676d.php │ │ ├── fe70176133f4782296693ce1e14dad703627382e.php │ │ ├── fe9e8f0288999a13932af3684ded9cd42036299f.php │ │ ├── fedee94e34d5fb1b360116d4ef61a2a3a83f3738.php │ │ ├── fee44a4fdd46ec04b1aed021748a679373c4e40e.php │ │ ├── ff23d0f7a6b7e2b2092bee8075bab6ac7cf2c6c9.php │ │ └── ffa089ada5a37319d0d712f29375f8aa2e0e968f.php └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── uploads ├── settings │ ├── Gmm8LlmKrUol1mcJbBHT.jpeg │ ├── PuTw9HKv762gT0vUU2BY.jpeg │ └── Zk6wYjVmop0GBgcTAaqg.jpeg └── user │ └── 8Zbeil3F6M8wT8j2irYe.jpeg ├── web.config └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /.idea/mbpos-1.3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/mbpos-1.3.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Helpers/helper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/BranchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/BranchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/DraftController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/DraftController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/NoticeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/NoticeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/SellController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/SellController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/TaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/TaxController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/TodoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/TodoController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/TrashController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/TrashController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/VeuApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Backend/VeuApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DBCheckController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/DBCheckController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/ActiveUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/ActiveUser.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/LocalizationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/LocalizationMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/BranchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/BranchRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/CategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CustomerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/CustomerRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DepartmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/DepartmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DesignationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/DesignationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EmployeeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/EmployeeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ExpenseCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/ExpenseCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ExpenseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/ExpenseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LanguageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/LanguageRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/NoticeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/NoticeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PaymentFromCustomerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/PaymentFromCustomerRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PaymentToSupplierRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/PaymentToSupplierRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/ProductRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/RoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/RoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/SupplierRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/SupplierRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TaxRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/TaxRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TodoRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Http/Requests/TodoRequest.php -------------------------------------------------------------------------------- /app/Models/Branch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Branch.php -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Brand.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Department.php -------------------------------------------------------------------------------- /app/Models/Designation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Designation.php -------------------------------------------------------------------------------- /app/Models/Draft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Draft.php -------------------------------------------------------------------------------- /app/Models/DraftProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/DraftProduct.php -------------------------------------------------------------------------------- /app/Models/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Employee.php -------------------------------------------------------------------------------- /app/Models/Expense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Expense.php -------------------------------------------------------------------------------- /app/Models/ExpenseCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/ExpenseCategory.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Notice.php -------------------------------------------------------------------------------- /app/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Notification.php -------------------------------------------------------------------------------- /app/Models/PaymentFromCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/PaymentFromCustomer.php -------------------------------------------------------------------------------- /app/Models/PaymentToSupplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/PaymentToSupplier.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Purchase.php -------------------------------------------------------------------------------- /app/Models/PurchaseProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/PurchaseProduct.php -------------------------------------------------------------------------------- /app/Models/Requisition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Requisition.php -------------------------------------------------------------------------------- /app/Models/RequisitionProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/RequisitionProduct.php -------------------------------------------------------------------------------- /app/Models/Sell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Sell.php -------------------------------------------------------------------------------- /app/Models/SellProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/SellProduct.php -------------------------------------------------------------------------------- /app/Models/SellsTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/SellsTarget.php -------------------------------------------------------------------------------- /app/Models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Settings.php -------------------------------------------------------------------------------- /app/Models/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Supplier.php -------------------------------------------------------------------------------- /app/Models/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Tax.php -------------------------------------------------------------------------------- /app/Models/Todo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Models/Todo.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/artisan -------------------------------------------------------------------------------- /backend/css/jquery.timepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/css/jquery.timepicker.min.css -------------------------------------------------------------------------------- /backend/css/mbposcustom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/css/mbposcustom.css -------------------------------------------------------------------------------- /backend/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/css/owl.carousel.css -------------------------------------------------------------------------------- /backend/css/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/css/toastr.min.css -------------------------------------------------------------------------------- /backend/img/blank-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/blank-thumbnail.jpg -------------------------------------------------------------------------------- /backend/img/en.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/en.ico -------------------------------------------------------------------------------- /backend/img/flag/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/flag/en.png -------------------------------------------------------------------------------- /backend/img/to-do-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/to-do-list.png -------------------------------------------------------------------------------- /backend/img/todo-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/todo-list.png -------------------------------------------------------------------------------- /backend/img/undraw_posting_photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/undraw_posting_photo.svg -------------------------------------------------------------------------------- /backend/img/user-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/img/user-placeholder.png -------------------------------------------------------------------------------- /backend/js/custom-toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/custom-toastr.js -------------------------------------------------------------------------------- /backend/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/custom.js -------------------------------------------------------------------------------- /backend/js/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/demo/chart-area-demo.js -------------------------------------------------------------------------------- /backend/js/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /backend/js/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /backend/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/demo/datatables-demo.js -------------------------------------------------------------------------------- /backend/js/jquery.timepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/jquery.timepicker.min.js -------------------------------------------------------------------------------- /backend/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/owl.carousel.js -------------------------------------------------------------------------------- /backend/js/partial/create-payment-to-supplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/create-payment-to-supplier.js -------------------------------------------------------------------------------- /backend/js/partial/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/dashboard.js -------------------------------------------------------------------------------- /backend/js/partial/db-checking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/db-checking.js -------------------------------------------------------------------------------- /backend/js/partial/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/product.js -------------------------------------------------------------------------------- /backend/js/partial/purchase-report-statistic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/purchase-report-statistic.js -------------------------------------------------------------------------------- /backend/js/partial/sale-report-dynamic-days.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/sale-report-dynamic-days.js -------------------------------------------------------------------------------- /backend/js/partial/sale-report-statistic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/partial/sale-report-statistic.js -------------------------------------------------------------------------------- /backend/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/script.js -------------------------------------------------------------------------------- /backend/js/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/timepicker.js -------------------------------------------------------------------------------- /backend/js/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/js/toastr.min.js -------------------------------------------------------------------------------- /backend/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /backend/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /backend/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /backend/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /backend/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /backend/vendor/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /backend/vendor/chart.js/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/chart.js/Chart.bundle.js -------------------------------------------------------------------------------- /backend/vendor/chart.js/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/chart.js/Chart.bundle.min.js -------------------------------------------------------------------------------- /backend/vendor/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/chart.js/Chart.js -------------------------------------------------------------------------------- /backend/vendor/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/chart.js/Chart.min.js -------------------------------------------------------------------------------- /backend/vendor/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /backend/vendor/datepicker/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/datepicker/bootstrap-datepicker.js -------------------------------------------------------------------------------- /backend/vendor/datepicker/datepicker3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/datepicker/datepicker3.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/all.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/all.min.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/brands.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/brands.min.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/fontawesome.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/regular.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/regular.min.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/solid.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/solid.min.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/js/v4-shims.js -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_core.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_icons.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_larger.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_list.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_mixins.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/_shims.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/brands.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/regular.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/less/solid.less -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/package.json -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_core.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_icons.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_larger.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_list.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_mixins.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/_shims.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/brands.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/regular.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/scss/solid.scss -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/sprites/solid.svg -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/svgs/solid/ad.svg -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/svgs/solid/at.svg -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/svgs/solid/om.svg -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/svgs/solid/th.svg -------------------------------------------------------------------------------- /backend/vendor/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/fontawesome-free/svgs/solid/tv.svg -------------------------------------------------------------------------------- /backend/vendor/jquery-easing/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery-easing/jquery.easing.js -------------------------------------------------------------------------------- /backend/vendor/jquery-easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery-easing/jquery.easing.min.js -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /backend/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.babelrc -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.eslintrc -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.gitignore -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.jscsrc -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.npmignore -------------------------------------------------------------------------------- /backend/vendor/parsley.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/parsley.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/CNAME: -------------------------------------------------------------------------------- 1 | parsleyjs.org 2 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/CONTRIBUTING.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/LICENSE -------------------------------------------------------------------------------- /backend/vendor/parsley.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/README.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/UPGRADE-2.0.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/UPGRADE-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/UPGRADE-2.1.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/UPGRADE-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/UPGRADE-2.2.md -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/bower.json -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/expect.js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/expect.js/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | Makefile 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/al.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ar.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/bg.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ca.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/cs.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/cs.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/cs.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/da.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/de.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/de.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/de.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/el.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/el.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/el.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/en.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/en.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/en.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/es.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/et.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/eu.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/fa.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/fi.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/fi.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/fi.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/fr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/fr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/fr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/he.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/he.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/he.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/hr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/hr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/hr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/hu.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/hu.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/hu.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/id.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/id.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/id.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/it.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/it.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/it.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ja.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ja.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ja.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ko.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/lt.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/lt.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/lt.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/lv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/lv.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/lv.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ms.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ms.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ms.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/nl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/nl.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/nl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/no.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/pl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/pt-br.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/pt-pt.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ro.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ro.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ro.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ru.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ru.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ru.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sk.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sl.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sq.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sv.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/sv.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/th.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/tk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/tr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ua.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ua.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/ua.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/uk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/uk.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/uk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/zh_cn.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/i18n/zh_tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/i18n/zh_tw.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/parsley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/parsley.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/parsley.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/parsley.js.map -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/parsley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/parsley.min.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/dist/parsley.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/dist/parsley.min.js.map -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/about.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/docs.css -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/docs.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/docs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/docs.less -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/example.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/help.css -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/assets/help.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/assets/help.less -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/download.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/examples.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/examples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/examples/ajax.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/help.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/index.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/doc/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/doc/tests.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/gulpfile.babel.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/index.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/package.json -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/header.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/al.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ar.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/bg.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ca.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/cs.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/cs.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/cs.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/da.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/de.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/de.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/de.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/el.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/el.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/el.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/en.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/en.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/en.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/es.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/et.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/eu.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/fa.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/fi.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/fi.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/fi.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/fr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/fr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/fr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/he.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/he.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/he.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/hr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/hr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/hr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/hu.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/hu.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/hu.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/id.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/id.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/id.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/it.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/it.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/it.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ja.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ja.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ja.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ko.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/lt.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/lt.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/lt.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/lv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/lv.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/lv.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ms.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ms.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ms.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/nl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/nl.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/nl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/no.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/pl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/pt-br.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/pt-pt.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ro.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ro.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ro.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ru.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ru.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ru.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sk.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sl.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sl.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sl.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sq.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sr.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sr.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sv.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sv.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/sv.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/th.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/tk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/tr.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ua.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ua.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/ua.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/uk.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/uk.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/uk.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/zh_cn.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/zh_cn.extra.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/zh_cn.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/i18n/zh_tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/i18n/zh_tw.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley.css -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/base.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/defaults.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/factory.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/field.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/form.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/main.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/multiple.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/pubsub.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/remote.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/ui.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/src/parsley/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/src/parsley/utils.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/.eslintrc -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/runner.html -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/setup/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/setup/node.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/setup/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/setup/setup.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/base.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/extra/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/extra/bind.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/field.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/form.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/multiple.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/parsley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/parsley.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/pubsub.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/remote.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/ui.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/utils.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/test/unit/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/test/unit/validator.js -------------------------------------------------------------------------------- /backend/vendor/parsley.js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/parsley.js/yarn.lock -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /backend/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /backend/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.css -------------------------------------------------------------------------------- /backend/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /backend/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /backend/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.js -------------------------------------------------------------------------------- /backend/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /backend/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /backend/vendor/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/.gitattributes -------------------------------------------------------------------------------- /backend/vendor/toastr.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/.gitignore -------------------------------------------------------------------------------- /backend/vendor/toastr.js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/.jscsrc -------------------------------------------------------------------------------- /backend/vendor/toastr.js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/.jshintrc -------------------------------------------------------------------------------- /backend/vendor/toastr.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/toastr.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/toastr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/LICENSE -------------------------------------------------------------------------------- /backend/vendor/toastr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/README.md -------------------------------------------------------------------------------- /backend/vendor/toastr.js/build/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/build/toastr.css -------------------------------------------------------------------------------- /backend/vendor/toastr.js/build/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/build/toastr.js.map -------------------------------------------------------------------------------- /backend/vendor/toastr.js/build/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/build/toastr.min.css -------------------------------------------------------------------------------- /backend/vendor/toastr.js/build/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/build/toastr.min.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/demo.html -------------------------------------------------------------------------------- /backend/vendor/toastr.js/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/gulpfile.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/karma.conf.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.0.0.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.0.1.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.0.2.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.0.3.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.0.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.1.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.2.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.3.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.4.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.1.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.1.5.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.2.0.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.2.1.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.2.2.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.3.0.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.1.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.1.3.1.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.2.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.2.0.1.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.2.0.2.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/nuget/toastr.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/nuget/toastr.2.0.3.nupkg -------------------------------------------------------------------------------- /backend/vendor/toastr.js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/package-lock.json -------------------------------------------------------------------------------- /backend/vendor/toastr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/package.json -------------------------------------------------------------------------------- /backend/vendor/toastr.js/release checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/release checklist.md -------------------------------------------------------------------------------- /backend/vendor/toastr.js/tests/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/tests/qunit/qunit.css -------------------------------------------------------------------------------- /backend/vendor/toastr.js/tests/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/tests/qunit/qunit.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/tests/toastr-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/tests/toastr-tests.html -------------------------------------------------------------------------------- /backend/vendor/toastr.js/tests/unit/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/tests/unit/x.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/toastr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/toastr-icon.png -------------------------------------------------------------------------------- /backend/vendor/toastr.js/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/toastr.js -------------------------------------------------------------------------------- /backend/vendor/toastr.js/toastr.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/toastr.less -------------------------------------------------------------------------------- /backend/vendor/toastr.js/toastr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/backend/vendor/toastr.js/toastr.scss -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/database.php -------------------------------------------------------------------------------- /config/dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/dompdf.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/installer.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/mb_pos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/mb_pos.sql -------------------------------------------------------------------------------- /database/seeds/AppSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/seeds/AppSettings.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/EmployeeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/seeds/EmployeeSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/seeds/PermissionSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/database/seeds/RoleSeeder.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/default-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/images/default-banner.jpg -------------------------------------------------------------------------------- /images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/images/default.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /installer/css/sass/_variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/sass/_variables.sass -------------------------------------------------------------------------------- /installer/css/sass/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/sass/style.sass -------------------------------------------------------------------------------- /installer/css/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/_variables.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_animated.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_core.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_fixed-width.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_icons.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_larger.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_list.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_mixins.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_path.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_stacked.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/_variables.scss -------------------------------------------------------------------------------- /installer/css/scss/font-awesome/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/font-awesome/font-awesome.scss -------------------------------------------------------------------------------- /installer/css/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/scss/style.scss -------------------------------------------------------------------------------- /installer/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/style.css -------------------------------------------------------------------------------- /installer/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/style.css.map -------------------------------------------------------------------------------- /installer/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/style.min.css -------------------------------------------------------------------------------- /installer/css/style.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/css/style.min.css.map -------------------------------------------------------------------------------- /installer/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /installer/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /installer/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /installer/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /installer/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /installer/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /installer/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/ionicons.eot -------------------------------------------------------------------------------- /installer/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/ionicons.svg -------------------------------------------------------------------------------- /installer/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/ionicons.ttf -------------------------------------------------------------------------------- /installer/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/fonts/ionicons.woff -------------------------------------------------------------------------------- /installer/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/img/background.png -------------------------------------------------------------------------------- /installer/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /installer/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /installer/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /installer/img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/installer/img/pattern.png -------------------------------------------------------------------------------- /mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/mix-manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/backend/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/public/backend/css/app.css -------------------------------------------------------------------------------- /public/backend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/public/backend/js/app.js -------------------------------------------------------------------------------- /public/backend/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/public/backend/js/script.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/components/purchase/EditPurchase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/purchase/EditPurchase.vue -------------------------------------------------------------------------------- /resources/js/components/purchase/NewPurchase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/purchase/NewPurchase.vue -------------------------------------------------------------------------------- /resources/js/components/role/Role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/role/Role.vue -------------------------------------------------------------------------------- /resources/js/components/sell/EditSell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/sell/EditSell.vue -------------------------------------------------------------------------------- /resources/js/components/sell/NewSell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/sell/NewSell.vue -------------------------------------------------------------------------------- /resources/js/components/tax/Tax.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/tax/Tax.vue -------------------------------------------------------------------------------- /resources/js/components/todo/TodoComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/todo/TodoComponent.vue -------------------------------------------------------------------------------- /resources/js/components/todo/TodoComponent2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/todo/TodoComponent2.vue -------------------------------------------------------------------------------- /resources/js/components/todo/TodoComponent3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/components/todo/TodoComponent3.vue -------------------------------------------------------------------------------- /resources/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/js/script.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/installer_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/installer_messages.php -------------------------------------------------------------------------------- /resources/lang/en/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/pages.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/master/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/lang/master/pages.php -------------------------------------------------------------------------------- /resources/sass/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_buttons.scss -------------------------------------------------------------------------------- /resources/sass/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_cards.scss -------------------------------------------------------------------------------- /resources/sass/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_charts.scss -------------------------------------------------------------------------------- /resources/sass/_drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_drawer.scss -------------------------------------------------------------------------------- /resources/sass/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_dropdowns.scss -------------------------------------------------------------------------------- /resources/sass/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_error.scss -------------------------------------------------------------------------------- /resources/sass/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_footer.scss -------------------------------------------------------------------------------- /resources/sass/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_form.scss -------------------------------------------------------------------------------- /resources/sass/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_global.scss -------------------------------------------------------------------------------- /resources/sass/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_login.scss -------------------------------------------------------------------------------- /resources/sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/sass/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_modal.scss -------------------------------------------------------------------------------- /resources/sass/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_navs.scss -------------------------------------------------------------------------------- /resources/sass/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_profile.scss -------------------------------------------------------------------------------- /resources/sass/_purchase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_purchase.scss -------------------------------------------------------------------------------- /resources/sass/_select-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_select-2.scss -------------------------------------------------------------------------------- /resources/sass/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_settings.scss -------------------------------------------------------------------------------- /resources/sass/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_table.scss -------------------------------------------------------------------------------- /resources/sass/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_utilities.scss -------------------------------------------------------------------------------- /resources/sass/_v-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_v-select.scss -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/navs/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/navs/_global.scss -------------------------------------------------------------------------------- /resources/sass/navs/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/navs/_sidebar.scss -------------------------------------------------------------------------------- /resources/sass/navs/_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/navs/_topbar.scss -------------------------------------------------------------------------------- /resources/sass/pos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/pos.scss -------------------------------------------------------------------------------- /resources/sass/product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/product.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_animation.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_background.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_border.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_display.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_progress.scss: -------------------------------------------------------------------------------- 1 | .progress-sm { 2 | height: .5rem; 3 | } 4 | -------------------------------------------------------------------------------- /resources/sass/utilities/_rotate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_rotate.scss -------------------------------------------------------------------------------- /resources/sass/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/sass/utilities/_text.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/backend/branch/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/branch/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/branch/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/branch/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/branch/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/branch/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/category/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/category/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/customer/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/customer/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/customer/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/customer/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/customer/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/customer/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/customer/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/customer/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/backend/employee/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/employee/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/employee/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/employee/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/employee/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/employee/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/employee/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/employee/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/expense/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/expense/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/expense/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/expense/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/expense/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/expense/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/language/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/language/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/language/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/language/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/language/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/language/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/backend/notice/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/notice/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/notice/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/notice/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/notice/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/notice/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/notice/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/notice/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pdf/layouts/css.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/pdf/layouts/css.blade.php -------------------------------------------------------------------------------- /resources/views/backend/product/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/product/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/product/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/product/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/product/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/product/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/product/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/product/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/purchase/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/purchase/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/purchase/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/purchase/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/purchase/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/purchase/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/purchase/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/purchase/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/role/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/sell/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/sell/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/sell/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/sell/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/sell/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/sell/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/sell/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/sell/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/tax/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/tax/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/todo/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/todo/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/trash/taxes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/trash/taxes.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/backend/user/show.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/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/vimalcvs/MB-POS-Inventory-Stock-Management-System/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/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /uploads/settings/Gmm8LlmKrUol1mcJbBHT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/uploads/settings/Gmm8LlmKrUol1mcJbBHT.jpeg -------------------------------------------------------------------------------- /uploads/settings/PuTw9HKv762gT0vUU2BY.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/uploads/settings/PuTw9HKv762gT0vUU2BY.jpeg -------------------------------------------------------------------------------- /uploads/settings/Zk6wYjVmop0GBgcTAaqg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/uploads/settings/Zk6wYjVmop0GBgcTAaqg.jpeg -------------------------------------------------------------------------------- /uploads/user/8Zbeil3F6M8wT8j2irYe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/uploads/user/8Zbeil3F6M8wT8j2irYe.jpeg -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/web.config -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimalcvs/MB-POS-Inventory-Stock-Management-System/HEAD/webpack.mix.js --------------------------------------------------------------------------------