{"id":48832157,"url":"https://github.com/relaticle/comments","last_synced_at":"2026-04-14T21:01:00.058Z","repository":{"id":347153341,"uuid":"1192988891","full_name":"relaticle/comments","owner":"relaticle","description":"A Filament comments package with threaded replies, mentions, reactions, file attachments, notifications, and real-time updates","archived":false,"fork":false,"pushed_at":"2026-04-13T19:46:25.000Z","size":4085,"stargazers_count":15,"open_issues_count":1,"forks_count":4,"subscribers_count":0,"default_branch":"1.x","last_synced_at":"2026-04-13T21:31:33.782Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://relaticle.github.io/comments/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/relaticle.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","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},"funding":{"github":"Relaticle"}},"created_at":"2026-03-26T19:02:41.000Z","updated_at":"2026-04-13T19:46:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/relaticle/comments","commit_stats":null,"previous_names":["relaticle/comments"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/relaticle/comments","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relaticle%2Fcomments","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relaticle%2Fcomments/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relaticle%2Fcomments/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relaticle%2Fcomments/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/relaticle","download_url":"https://codeload.github.com/relaticle/comments/tar.gz/refs/heads/1.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relaticle%2Fcomments/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31815080,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: 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":[],"created_at":"2026-04-14T21:00:51.982Z","updated_at":"2026-04-14T21:01:00.042Z","avatar_url":"https://github.com/relaticle.png","language":"PHP","funding_links":["https://github.com/sponsors/Relaticle"],"categories":[],"sub_categories":[],"readme":"# Comments\n\n\u003cimg src=\"art/preview.png\" alt=\"Comments System\" width=\"800\"\u003e\n\nA full-featured commenting system for Filament panels with threaded replies, @mentions, emoji reactions, and real-time updates.\n\n[![Latest Version](https://img.shields.io/packagist/v/relaticle/comments.svg?style=for-the-badge)](https://packagist.org/packages/relaticle/comments)\n[![Total Downloads](https://img.shields.io/packagist/dt/relaticle/comments.svg?style=for-the-badge)](https://packagist.org/packages/relaticle/comments)\n[![PHP 8.2+](https://img.shields.io/badge/php-8.2%2B-blue.svg?style=for-the-badge)](https://php.net)\n[![Laravel 12+](https://img.shields.io/badge/laravel-12%2B-red.svg?style=for-the-badge)](https://laravel.com)\n[![Tests](https://img.shields.io/github/actions/workflow/status/relaticle/comments/tests.yml?branch=1.x\u0026style=for-the-badge\u0026label=tests)](https://github.com/relaticle/comments/actions)\n\n## Features\n\n- **Threaded Replies** - Nested comment threads with configurable depth limits\n- **@Mentions** - Autocomplete user mentions with customizable resolver\n- **Emoji Reactions** - 6 built-in reactions with configurable emoji sets\n- **File Attachments** - Image and document uploads with validation\n- **Notifications \u0026 Subscriptions** - Database and mail notifications with auto-subscribe\n- **Multi-tenancy** - Built-in tenant isolation for multi-tenant applications\n- **3 Filament Integrations** - Slide-over action, table action, and infolist entry\n\n## Requirements\n\n- **PHP:** 8.2+\n- **Laravel:** 12+\n- **Livewire:** 3.5+ / 4.x\n- **Filament:** 4.x / 5.x\n\n## Getting Started\n\n```bash\ncomposer require relaticle/comments\n```\n\nPublish and run migrations:\n\n```bash\nphp artisan vendor:publish --tag=comments-migrations\nphp artisan migrate\n```\n\n### Setting Up Your Models\n\n```php\nuse Relaticle\\Comments\\Concerns\\HasComments;\nuse Relaticle\\Comments\\Contracts\\Commentable;\n\nclass Project extends Model implements Commentable\n{\n    use HasComments;\n}\n```\n\n### Register the Filament Plugin\n\n```php\nuse Relaticle\\Comments\\CommentsPlugin;\n\npublic function panel(Panel $panel): Panel\n{\n    return $panel\n        -\u003eplugins([\n            CommentsPlugin::make(),\n        ]);\n}\n```\n\n### Add Comments to Your Resources\n\n```php\nuse Relaticle\\Comments\\Filament\\Actions\\CommentsAction;\n\nprotected function getHeaderActions(): array\n{\n    return [\n        CommentsAction::make(),\n    ];\n}\n```\n\n## Documentation\n\nFor complete installation instructions, configuration options, multi-tenancy setup, and examples, visit our [documentation](https://relaticle.github.io/comments/).\n\n## Contributing\n\nContributions are welcome! Please see our [contributing guide](https://relaticle.github.io/comments/) in the documentation.\n\n## License\n\nMIT License. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frelaticle%2Fcomments","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frelaticle%2Fcomments","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frelaticle%2Fcomments/lists"}