{"id":39864808,"url":"https://github.com/brettoak/laravel11-app","last_synced_at":"2026-01-18T14:06:03.471Z","repository":{"id":322185495,"uuid":"1088419108","full_name":"brettoak/laravel11-app","owner":"brettoak","description":"A modular Laravel + Livewire dashboard featuring async task processing workflows, AI-driven modules, Role \u0026 Permission Management (RBAC) system, and additional features that will be continuously added over time.","archived":false,"fork":false,"pushed_at":"2025-12-29T05:16:17.000Z","size":2176,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-30T13:42:05.647Z","etag":null,"topics":["filamentadmin","livewire-components"],"latest_commit_sha":null,"homepage":"https://laravel.dongyuhan.com","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/brettoak.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":"2025-11-02T23:20:48.000Z","updated_at":"2025-12-30T06:18:28.000Z","dependencies_parsed_at":"2025-11-11T08:14:03.632Z","dependency_job_id":null,"html_url":"https://github.com/brettoak/laravel11-app","commit_stats":null,"previous_names":["brett-han/laravel11-app","brettoak/laravel11-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brettoak/laravel11-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brettoak%2Flaravel11-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brettoak%2Flaravel11-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brettoak%2Flaravel11-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brettoak%2Flaravel11-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brettoak","download_url":"https://codeload.github.com/brettoak/laravel11-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brettoak%2Flaravel11-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28537492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T13:04:05.990Z","status":"ssl_error","status_checked_at":"2026-01-18T13:01:44.092Z","response_time":98,"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":["filamentadmin","livewire-components"],"created_at":"2026-01-18T14:06:03.376Z","updated_at":"2026-01-18T14:06:03.456Z","avatar_url":"https://github.com/brettoak.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel App\n\nA modern Laravel 11 application featuring a robust tech stack including Jetstream for authentication, Filament for the admin panel, and Reverb for real-time WebSocket capabilities.\n\n## Features\n\n- **Authentication \u0026 Security**: Built on [Laravel Jetstream](https://jetstream.laravel.com/) and [Sanctum](https://laravel.com/docs/sanctum).\n- **Admin Panel**: Powered by [Filament v4](https://filamentphp.com/), including [Filament Shield](https://github.com/bezhanSalleh/filament-shield) for Role-Based Access Control (RBAC).\n- **Real-Time Updates**: Integrated with [Laravel Reverb](https://reverb.laravel.com/) for WebSocket broadcasting.\n- **Frontend**: Reactive UI components using [Livewire](https://livewire.laravel.com/) and [Alpine.js](https://alpinejs.dev/), styled with [Tailwind CSS](https://tailwindcss.com/).\n- **Content Management**: Manage Articles and Comments directly from the admin dashboard.\n\n## Prerequisites\n\nEnsure you have the following installed:\n- PHP 8.2+\n- Composer\n- Node.js \u0026 NPM\n- Docker (optional, for database/Reverb)\n\n## Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd laravel11-app\n   ```\n\n2. **Install PHP dependencies**\n   ```bash\n   composer install\n   ```\n\n3. **Install JavaScript dependencies**\n   ```bash\n   npm install\n   ```\n\n4. **Environment Setup**\n   Copy the example environment file and configure your database settings:\n   ```bash\n   cp .env.example .env\n   php artisan key:generate\n   ```\n   *Note: Ensure your database credentials in `.env` match your local setup.*\n\n5. **Database Migration**\n   Run migrations to set up the database schema:\n   ```bash\n   php artisan migrate\n   ```\n\n6. **Create Admin User**\n   Create a user to access the Filament admin panel:\n   ```bash\n   php artisan make:filament-user\n   ```\n\n## Usage\n\n### Development Server\nStart the Laravel development server:\n```bash\nphp artisan serve\n```\n\n### Frontend Assets\nCompile assets in watch mode:\n```bash\nnpm run dev\n```\n\n### Real-Time Server (Reverb)\nStart the Reverb WebSocket server:\n```bash\nphp artisan reverb:start\n```\n\n### Queue Worker\nProcess background jobs:\n```bash\nphp artisan queue:listen\n```\n\nAccess the application at `http://localhost:8000` and the admin panel at `http://localhost:8000/admin`.\n\n## Testing\n\nRun the test suite using PHPUnit / Pest:\n```bash\nphp artisan test\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrettoak%2Flaravel11-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrettoak%2Flaravel11-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrettoak%2Flaravel11-app/lists"}