{"id":33977457,"url":"https://github.com/oriondevelops/filament-feedback","last_synced_at":"2026-06-09T09:32:22.866Z","repository":{"id":209209893,"uuid":"723495139","full_name":"oriondevelops/filament-feedback","owner":"oriondevelops","description":"A Filament plugin to collect feedback.","archived":false,"fork":false,"pushed_at":"2024-08-18T08:16:38.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-14T15:11:40.418Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/oriondevelops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":"oriondevelops"}},"created_at":"2023-11-25T21:06:22.000Z","updated_at":"2025-01-03T22:20:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"5351b6c2-d0db-4e20-9be2-4a4b9051c1c9","html_url":"https://github.com/oriondevelops/filament-feedback","commit_stats":null,"previous_names":["oriondevelops/filament-feedback"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/oriondevelops/filament-feedback","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oriondevelops%2Ffilament-feedback","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oriondevelops%2Ffilament-feedback/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oriondevelops%2Ffilament-feedback/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oriondevelops%2Ffilament-feedback/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oriondevelops","download_url":"https://codeload.github.com/oriondevelops/filament-feedback/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oriondevelops%2Ffilament-feedback/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34101065,"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-09T02:00:06.510Z","response_time":63,"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":"2025-12-13T02:24:07.764Z","updated_at":"2026-06-09T09:32:22.861Z","avatar_url":"https://github.com/oriondevelops.png","language":"PHP","funding_links":["https://github.com/sponsors/oriondevelops"],"categories":[],"sub_categories":[],"readme":"# A Filament plugin to collect feedback\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/oriondevelops/filament-feedback.svg?style=flat-square)](https://packagist.org/packages/oriondevelops/filament-feedback)\n[![Total Downloads](https://img.shields.io/packagist/dt/oriondevelops/filament-feedback.svg?style=flat-square)](https://packagist.org/packages/oriondevelops/filament-feedback)\n\nThis Filament plugin is a simple wizard that collects user feedback and forwards it to the chosen email address.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require oriondevelops/filament-feedback\n```\n\nNext ensure you setup [a mail service](https://laravel.com/docs/master/mail).\n\n## Usage\n\nYou need to register the plugin with your preferred Filament panel providers. This can be done inside of your `PanelProvider`, e.g. `AdminPanelProvider`.\n\n```php\n\u003c?php\n\nnamespace App\\Providers\\Filament;\n\nuse Filament\\Panel;\nuse Filament\\PanelProvider;\nuse Orion\\FilamentFeedback\\FeedbackPlugin;\n\nclass AdminPanelProvider extends PanelProvider\n{\n    public function panel(Panel $panel): Panel\n    {\n        return $panel\n            // ...\n            -\u003eplugin(\n                FeedbackPlugin::make()\n                    -\u003esendResponsesTo(email: 'oriondevelops@gmail.com')\n            );\n    }\n}\n```\n\nYou can now click on the \"Feedback\" menu item in your Filament app to see the feedback plugin.\n\n### Customizing visibility\n\nDefine who can view the feedback page.\n\n```php\n\u003c?php\n\nnamespace App\\Providers\\Filament;\n\nuse Filament\\Panel;\nuse Filament\\PanelProvider;\nuse Orion\\FilamentFeedback\\FeedbackPlugin;\n\nclass AdminPanelProvider extends PanelProvider\n{\n    public function panel(Panel $panel): Panel\n    {\n        return $panel\n            // ...\n            -\u003eplugin(\n                FeedbackPlugin::make()\n                    -\u003evisible(fn() =\u003e auth()-\u003euser()-\u003ecan('view feedback page'))\n            );\n    }\n}\n```\n\n### Customizing the navigation item\n\n```php\n\u003c?php\n\nnamespace App\\Providers\\Filament;\n\nuse Filament\\Panel;\nuse Filament\\PanelProvider;\nuse Orion\\FilamentFeedback\\FeedbackPlugin;\n\nclass AdminPanelProvider extends PanelProvider\n{\n    public function panel(Panel $panel): Panel\n    {\n        return $panel\n            // ...\n            -\u003eplugin(\n                FeedbackPlugin::make()\n                    -\u003eslug('feedback')\n                    -\u003elabel('Feedback')\n                    -\u003eicon('heroicon-o-face-smile')\n                    -\u003egroup('Help')\n                    -\u003esort(3),\n            );\n    }\n}\n```\n\n### Customizing the page\n\n```php\n\u003c?php\n\nnamespace App\\Providers\\Filament;\n\nuse Filament\\Panel;\nuse Filament\\PanelProvider;\nuse Orion\\FilamentFeedback\\FeedbackPlugin;\nuse App\\Filament\\Pages\\ExtendedFeedbackPage;\n\nclass AdminPanelProvider extends PanelProvider\n{\n    public function panel(Panel $panel): Panel\n    {\n        return $panel\n            // ...\n            -\u003eplugin(\n                FeedbackPlugin::make()\n                    -\u003epage(ExtendedFeedbackPage::class),\n            );\n    }\n}\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security\n\nPlease review [Security Policy](.github/SECURITY.md) on how to report security vulnerabilities.\n\n## Credits\n\n- [Mücahit Uğur](https://github.com/oriondevelops)\n- [All Contributors](https://github.com/oriondevelops/filament-feedback/contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foriondevelops%2Ffilament-feedback","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foriondevelops%2Ffilament-feedback","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foriondevelops%2Ffilament-feedback/lists"}