{"id":24764256,"url":"https://github.com/tooinfinity/magapos","last_synced_at":"2026-04-13T03:43:28.840Z","repository":{"id":116906698,"uuid":"212108205","full_name":"tooinfinity/magapos","owner":"tooinfinity","description":"POS (Point of Sale) for Magasin and Small Business ,Created with a PHP Framework Laravel ,AdminLTE and MySQL","archived":false,"fork":false,"pushed_at":"2024-03-29T15:20:03.000Z","size":8157,"stargazers_count":1,"open_issues_count":41,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-23T15:51:33.694Z","etag":null,"topics":["adminlte","composer","database","laragon","laravel","php","pos","sale"],"latest_commit_sha":null,"homepage":"","language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tooinfinity.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-01T13:49:31.000Z","updated_at":"2023-01-23T11:26:26.000Z","dependencies_parsed_at":"2024-01-01T14:27:11.933Z","dependency_job_id":"3cb4305e-a188-4e7b-8fc5-0a94989a51b8","html_url":"https://github.com/tooinfinity/magapos","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tooinfinity/magapos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tooinfinity%2Fmagapos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tooinfinity%2Fmagapos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tooinfinity%2Fmagapos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tooinfinity%2Fmagapos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tooinfinity","download_url":"https://codeload.github.com/tooinfinity/magapos/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tooinfinity%2Fmagapos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31739050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T03:27:07.512Z","status":"ssl_error","status_checked_at":"2026-04-13T03:26:53.610Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adminlte","composer","database","laragon","laravel","php","pos","sale"],"created_at":"2025-01-28T21:47:15.001Z","updated_at":"2026-04-13T03:43:28.811Z","avatar_url":"https://github.com/tooinfinity.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Piont of Sale (pos) \n\npos is project based on laravel framework 5.7 with AdminLTE 3  dashboard to manage your store\n\n\n## Installation\n\nAfter  all you need to setup your environment for php and database for that i use [___Laragon___](https://sourceforge.net/projects/laragon/files/releases/4.0/laragon-wamp.exe/download) \n\nyou need also [___Composer___](https://getcomposer.org/) Dependency Manager for PHP\nand [___git___](https://git-scm.com/)  control system \n\n### 1 - ___Clone Github repo for this project locally___\n- go to [___Gitthub___](https://github.com/) website and login or register to an account\n- go to your Terminal and look for folder __Laragon__ and sub folder __www__ and run this command\n\n        git clone https://github.com/tooinfinity/magapos.git\n  \n  this ask to login to __bitbucket__ put you username and password \n- wait until finiched setting up\n\n### 2 - ___Install Composer Dependencies___\n Open your terminal go to your project directory and run this command \n\n        composer install\nthis command install all dependency of laravel in your project\n\n### 3 - ___Install npm Dependencies___\n Open your terminal go to your project directory and run this command \n\n        npm install\nthis command install all dependency of laravel in your project\n\n\u003c-- you need to install [___NodeJs___](https://nodejs.org/en/) in your pc to get __npm__ command run  --\u003e\n\n### 4 - ___Create a copy of your .env file___\n        cp .env.example .env\n\nThis will create a copy of the .env.example file in your project and name the copy simply .env\n\n### 5 - ___Generate an app encryption key___\nLaravel requires you to have an app encryption key which is generally randomly generated and stored in your .env file Do that with this command\n\n        php artisan key:generate\n\n### 6 - ___Create an empty database for our application___\nCreate an empty database for your project using the database tools you prefer (heidiSQL)\n\n### 7 - ___In the .env file, add database information to allow Laravel to connect to the database___\nIn the .env file fill in the\n\n        DB_CONNECTION=mysql\n        DB_HOST=127.0.0.1\n        DB_PORT=3306\n        DB_DATABASE=your database name\n        DB_USERNAME=your database username\n        DB_PASSWORD=your database password\n\noptions to match the credentials of the database you just created. This will allow us to run migrations and seed the database in the next step.\n\n### 8 - ___Migrate and Seed the database___\nOnce your credentials are in the .env file, now you can migrate your database.\n\nrun this separately with two command\n\n__Migrate :__\n\n        php artisan migrate\n\n__Seed :__\n\n        php artisan db:seed\n__do that with one command :__\n\n        php artisan migrate:fresh seed\n\n\n## Packages used on this Project\n  -  [___Laratrust___](https://github.com/santigarcor/laratrust) (Laravel 5 Package)\n  -  [___laravel-localization___](https://github.com/mcamara/laravel-localization) Easy localization for Laravel by mcamara\n  -  [___SweetAlert2___](https://github.com/realrashid/sweet-alert) for Laravel 5.x by Rashid Ali\n  -  [___Intervention Image___](http://image.intervention.io/getting_started/installation)  PHP image handling and manipulation\n  -  __.....__\n\n## NPM Packages used on this Project\n  -  [___AdminLTE3___](https://adminlte.io/docs/2.4/installation)  Dashboard Template\n  -  [___fontawesome-free___](https://github.com/realrashid/sweet-alert) Font Icon Template\n  -  [___Select2.js___](https://select2.org/) a customizable select box\n  -  [___OnScan.js___](https://github.com/axenox/onscan.js) On-scan events for hardware barcode scanners in vanilla JS\n  -  __.....__\n## Todo List featured\n  - [ ] create a backup and restore for this application\n  - [ ] create printing system for my app\n  - [ ] Multipe and Soft Delete for Some featured actions\n  - [ ] New Design with dark mode toggle\n  - [ ] ............\n\n## To fix errors\n   - [x] delete category spending\n   - [x] fix layout not fit properly\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftooinfinity%2Fmagapos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftooinfinity%2Fmagapos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftooinfinity%2Fmagapos/lists"}