{"id":20615837,"url":"https://github.com/alfikiafan/sipinjam","last_synced_at":"2025-10-04T00:51:03.297Z","repository":{"id":165594206,"uuid":"640952820","full_name":"alfikiafan/sipinjam","owner":"alfikiafan","description":"Sipinjam is a web-based borrowing system that allows users to manage the borrowing and usage of items within different units. It provides a convenient and efficient way to track item availability, submit booking requests, and manage item usages.","archived":false,"fork":false,"pushed_at":"2023-07-11T10:39:14.000Z","size":11004,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-06T19:17:26.997Z","etag":null,"topics":["administrator","borrowing","dashboard","item","laravel","lending"],"latest_commit_sha":null,"homepage":"","language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alfikiafan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-05-15T13:20:25.000Z","updated_at":"2023-07-18T09:28:13.000Z","dependencies_parsed_at":"2025-01-17T04:26:44.802Z","dependency_job_id":"2af3e494-054e-46f6-96a7-48cb294e4a51","html_url":"https://github.com/alfikiafan/sipinjam","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/alfikiafan/sipinjam","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alfikiafan%2Fsipinjam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alfikiafan%2Fsipinjam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alfikiafan%2Fsipinjam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alfikiafan%2Fsipinjam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alfikiafan","download_url":"https://codeload.github.com/alfikiafan/sipinjam/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alfikiafan%2Fsipinjam/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278250085,"owners_count":25955840,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-03T02:00:06.070Z","response_time":53,"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":["administrator","borrowing","dashboard","item","laravel","lending"],"created_at":"2024-11-16T11:16:25.389Z","updated_at":"2025-10-04T00:51:03.280Z","avatar_url":"https://github.com/alfikiafan.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SIPINJAM - Web-based Borrowing System\n\nSipinjam is a web-based borrowing system that allows users to manage the borrowing and usage of items within different units. It provides a convenient and efficient way to track item availability, submit booking requests, and manage item usages.\n\n## Features\n\n- User Roles: Administrator, Unit Admin, Borrower.\n- Unit Management: Add, edit, and delete units (administrator).\n- Category Management: Add, edit, and delete categories (administrator).\n- Admin Unit Management: Add, edit, and delete admin units (administrator).\n- Item Management: Add, edit, and delete items. Assign items to categories and units (unit admin).\n- Booking Management: Submit, view, and cancel booking requests (borrower). Approve, reject, and expire booking requests (unit admin).\n- Usage Management: Track item usages and returns (unit admin).\n- Profile Management: User profiles for administrators, unit admins, and borrowers.\n- Statistics and Reports: See reports on item usage, booking requests, and returns (unit admin).\n\n## System Requirements\n\n- PHP 7.4 or higher\n- MySQL 5.7 or higher\n- Laravel 8.x framework\n- Composer (dependency management)\n- Web server (Apache, Nginx)\n- Browser compatibility: Chrome, Firefox, Safari, Edge\n\n## Installation\n\n1. Clone the repository:\n\n   ```\n   git clone https://github.com/alfikiafan/sipinjam.git\n   ```\n\n2. Navigate to the project directory:\n\n   ```\n   cd sipinjam\n   ```\n\n3. Install the dependencies:\n\n   ```\n   composer install\n   ```\n\n4. Create a copy of the `.env.example` file and rename it to `.env`:\n\n   ```\n   cp .env.example .env\n   ```\n\n5. Generate the application key:\n\n   ```\n   php artisan key:generate\n   ```\n\n6. Configure the database settings in the `.env` file:\n\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_username\n   DB_PASSWORD=your_password\n   ```\n\n7. **Activate GD and Fileinfo Extensions**:\n   - Open your `php.ini` file in your php directory.\n   - Uncomment the lines for the GD extension and the Fileinfo extension by removing the semicolon (;) at the beginning of the lines.\n     ```ini\n     extension=gd\n     extension=fileinfo\n     ```\n   - Save the changes to the `php.ini` file.\n   - This step is used to enable base64 in print-approval pdf.\n   - Restart your web server to apply the changes.\n\n8. Run the database migrations:\n\n   ```\n   php artisan migrate\n   ```\n\n9. Add an administrator account to the database:\n\n    Open a MySQL client, such as phpMyAdmin or MySQL Workbench.\n\n    Connect to your database.\n\n    Execute the following SQL query to insert a new administrator account:\n\n    ```sql\n    INSERT INTO users (name, email, password, role) VALUES ('Admin', 'admin@example.com', 'your_password_hash', 'administrator');\n    ```\n    Replace 'your_password_hash' with the hashed password for the administrator account. You can generate a password hash using Laravel's bcrypt    function or a tool like bcrypt-generator.com.\n10. Start the development server:\n\n   ```\n   php artisan serve\n   ```\n\n11. Access the application in your web browser at `http://127.0.0.1:8000/`.\n\n## License\n\nThis project is licensed under the [Non-commercial License](LICENSE).\n\n## Support\n\nIf you have any questions or need assistance, please open an issue in the [GitHub repository](https://github.com/your-username/sipinjam/issues).\n\n## Acknowledgements\n\nWe would like to thank the following contributors for their valuable contributions to this project:\n\n- Alfiki Diastama Afan Firdaus (https://github.com/alfikiafan)\n- Dwi Sinta Anggraini (https://github.com/dwisintangrn)\n- Haqqi Setiadjie (https://github.com/HaqqiEky)\n- Farros Muhammad Iqbaal\n\n## Credits\n\nSipinjam is built using several resources and libraries, including:\n\n- [Laravel](https://laravel.com)\n- [Faker](https://fakerphp.github.io)\n- [Dompdf](https://github.com/dompdf/dompdf)\n- [Soft UI Dashboard](https://www.creative-tim.com/product/soft-ui-dashboard)\n\n## Disclaimer\n\nThis project is for demonstration purposes only and should not be used in production environments without proper testing and customization.\n\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falfikiafan%2Fsipinjam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falfikiafan%2Fsipinjam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falfikiafan%2Fsipinjam/lists"}