{"id":51607765,"url":"https://github.com/davepartner/tutorial-laravel-authentication-system","last_synced_at":"2026-07-12T03:01:48.246Z","repository":{"id":360279958,"uuid":"1234856836","full_name":"davepartner/tutorial-laravel-authentication-system","owner":"davepartner","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-25T18:49:27.000Z","size":137,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T20:16:27.704Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/davepartner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-10T18:21:49.000Z","updated_at":"2026-05-25T18:49:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/davepartner/tutorial-laravel-authentication-system","commit_stats":null,"previous_names":["davepartner/tutorial-laravel-authentication-system"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/davepartner/tutorial-laravel-authentication-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Ftutorial-laravel-authentication-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Ftutorial-laravel-authentication-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Ftutorial-laravel-authentication-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Ftutorial-laravel-authentication-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davepartner","download_url":"https://codeload.github.com/davepartner/tutorial-laravel-authentication-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davepartner%2Ftutorial-laravel-authentication-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35380480,"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-07-12T02:00:06.386Z","response_time":87,"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":[],"created_at":"2026-07-12T03:01:45.170Z","updated_at":"2026-07-12T03:01:48.210Z","avatar_url":"https://github.com/davepartner.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tutorial Laravel Authentication System\n\nA Laravel-based authentication starter project with an enhanced admin dashboard experience.\n\nThis repository includes standard Laravel Breeze authentication pages and a redesigned, ERP-style dashboard UI with chart-driven widgets and operational panels.\n\n## Features\n\n- Laravel authentication flow (register, login, logout, password reset)\n- Profile management and password update pages\n- ERP-inspired dashboard layout with:\n  - KPI cards\n  - Line, bar, and doughnut charts (Chart.js)\n  - Status, todo, and operational request widgets\n  - Left vertical navigation sidebar\n- Tailwind CSS + Bootstrap integration for UI styling\n\n## Tech Stack\n\n- Backend: `PHP`, `Laravel`\n- Frontend: `Blade`, `Tailwind CSS`, `Bootstrap`, `Alpine.js`, `Chart.js`\n- Build tool: `Vite`\n- Database: `MySQL` (or any Laravel-supported database)\n\n## Prerequisites\n\nBefore running the project, ensure you have:\n\n- `PHP` (recommended: 8.2+)\n- `Composer`\n- `Node.js` and `npm`\n- A configured database server\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/davepartner/tutorial-laravel-authentication-system.git\n```\n\n2. Install PHP dependencies:\n\n```bash\ncomposer install\n```\n\n3. Install frontend dependencies:\n\n```bash\nnpm install\n```\n\n4. Create your environment file:\n\n```bash\ncp .env.example .env\n```\n\n5. Generate application key:\n\n```bash\nphp artisan key:generate\n```\n\n6. Configure your database in `.env`, then run migrations:\n\n```bash\nphp artisan migrate\n```\n\n## Running Locally\n\nStart Laravel server:\n\n```bash\nphp artisan serve\n```\n\nStart Vite dev server (new terminal):\n\n```bash\nnpm run dev\n```\n\nOpen the app at `http://127.0.0.1:8000`.\n\n## Authentication Routes\n\nMain auth routes are defined in:\n\n- `routes/auth.php`\n\nDashboard route is defined in:\n\n- `routes/web.php`\n\n## Testing\n\nRun backend tests:\n\n```bash\nphp artisan test\n```\n\n## Build for Production\n\n```bash\nnpm run build\n```\n\n## Project Structure (Key Paths)\n\n- `app/` - Laravel application logic\n- `resources/views/` - Blade templates\n- `resources/views/dashboard.blade.php` - Custom ERP-style dashboard\n- `resources/css/app.css` - App styles and framework imports\n- `resources/js/app.js` - Frontend bootstrapping and Chart.js import\n- `routes/` - Application route definitions\n\n## Troubleshooting\n\n- If assets do not update, restart `npm run dev`.\n- If database errors occur, verify `.env` database credentials.\n- If chart widgets do not appear, ensure frontend assets are built and loaded.\n\n## Contributing\n\nContributions are welcome.\n\n1. Create a feature branch.\n2. Make focused, tested changes.\n3. Open a pull request with a clear description.\n\n## License\n\nThis project is open-sourced under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavepartner%2Ftutorial-laravel-authentication-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavepartner%2Ftutorial-laravel-authentication-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavepartner%2Ftutorial-laravel-authentication-system/lists"}