{"id":50591504,"url":"https://github.com/tosinbot/mini-crm","last_synced_at":"2026-06-05T10:37:58.348Z","repository":{"id":37518945,"uuid":"141416458","full_name":"tosinbot/mini-crm","owner":"tosinbot","description":"Mini CRM with Laravel API and react-native","archived":false,"fork":false,"pushed_at":"2022-12-09T14:24:21.000Z","size":2575,"stargazers_count":26,"open_issues_count":9,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-06-05T10:37:51.744Z","etag":null,"topics":["apis","crm-platform","laravel","react-native"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tosinbot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-18T09:59:30.000Z","updated_at":"2023-11-13T05:14:08.000Z","dependencies_parsed_at":"2023-01-25T14:15:20.164Z","dependency_job_id":null,"html_url":"https://github.com/tosinbot/mini-crm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tosinbot/mini-crm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosinbot%2Fmini-crm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosinbot%2Fmini-crm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosinbot%2Fmini-crm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosinbot%2Fmini-crm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tosinbot","download_url":"https://codeload.github.com/tosinbot/mini-crm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosinbot%2Fmini-crm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33939226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apis","crm-platform","laravel","react-native"],"created_at":"2026-06-05T10:37:57.615Z","updated_at":"2026-06-05T10:37:58.343Z","avatar_url":"https://github.com/tosinbot.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MINI CRM - Using Laravel 5 and React Native\n## Quick Start\n\n### Backend:\n\n- Clone repo\n- Run `composer install`\n- Configure `.env` file for authenticating via database\n- Run `php artisan migrate --seed`\n- Run `php artisan passport:install` for api token\n\n### React Native\n\n- Clone repo\n- Run `yarn install`\n- Put `IP address of backend server` in config.js file for root and storage url\n- Run `react-native run-android` for android app test\n- Run `react-native run-ios` for ios app test\n\n## Live Backend Test\n\n- Run a PHP built in server from root project:\n\n```sh\nphp -S localhost:8000 -t public/\n```\n\nOr via artisan command:\n\n```sh\nphp artisan serve\n```\n\nTo authenticate admin user, make a `POST` request to `/api/login` with parameter as mentioned below:\n\n```\nemail: admin@admin.com\npassword: password\n```\n\nRequest:\n\n```sh\ncurl -X POST -F \"email=admin@admin.com\" -F \"password=password\" \"http://localhost:8000/api/login\"\n```\n\nResponse:\n\n```\n{\n  \"status\": \"success\",\n  \"message\": \"login_successful\",\n  \"data\": {\n    \"token\": \"a_long_token_appears_here\"\n  }\n}\n```\n\n- With token provided by above request, you can perform CRUD through api. below are available endpoints\n\nRequest:\n\n```sh\nEmployees Endpoints\n\ncurl -X GET -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/employee/view\"\n\ncurl -X GET -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/employee/view/{id}\"\n\ncurl -X POST -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/employee/create\"\n\ncurl -X PUT -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/employee/edit/{id}\"\n\ncurl -X DELETE -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/employee/delete/{id}\"\n```\n\n\n```sh\nCompanies Endpoints\n\ncurl -X GET -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/company/view\"\n\ncurl -X GET -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/company/view/{id}\"\n\ncurl -X POST -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/company/create\"\n\ncurl -X PUT -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/company/edit/{id}\"\n\ncurl -X DELETE -H \"Authorization: Bearer a_long_token_appears_here\" \"http://localhost:8000/api/company/delete/{id}\"\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosinbot%2Fmini-crm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftosinbot%2Fmini-crm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosinbot%2Fmini-crm/lists"}