{"id":23353705,"url":"https://github.com/downtoworld/filament-multilanguage","last_synced_at":"2025-10-13T20:41:10.788Z","repository":{"id":236750636,"uuid":"793087791","full_name":"DownToWorld/filament-multilanguage","owner":"DownToWorld","description":"Laravel Filament Automatic Translations","archived":false,"fork":false,"pushed_at":"2024-07-08T01:53:06.000Z","size":42,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-14T13:54:45.365Z","etag":null,"topics":["languages","laravel-filament","localization","magic-the-gathering"],"latest_commit_sha":null,"homepage":"","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/DownToWorld.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":"Down To World"}},"created_at":"2024-04-28T11:46:24.000Z","updated_at":"2024-05-07T15:08:53.000Z","dependencies_parsed_at":"2024-05-03T11:49:06.227Z","dependency_job_id":null,"html_url":"https://github.com/DownToWorld/filament-multilanguage","commit_stats":null,"previous_names":["downtoworld/filament-multilanguage"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DownToWorld/filament-multilanguage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DownToWorld%2Ffilament-multilanguage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DownToWorld%2Ffilament-multilanguage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DownToWorld%2Ffilament-multilanguage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DownToWorld%2Ffilament-multilanguage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DownToWorld","download_url":"https://codeload.github.com/DownToWorld/filament-multilanguage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DownToWorld%2Ffilament-multilanguage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016929,"owners_count":26085911,"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-13T02:00:06.723Z","response_time":61,"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":["languages","laravel-filament","localization","magic-the-gathering"],"created_at":"2024-12-21T09:15:32.020Z","updated_at":"2025-10-13T20:41:10.743Z","avatar_url":"https://github.com/DownToWorld.png","language":"PHP","funding_links":["https://github.com/sponsors/Down To World"],"categories":[],"sub_categories":[],"readme":"# WIP! Laravel Filament Automatic Translations\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/downtoworld/filament-multilanguage.svg?style=flat-square)](https://packagist.org/packages/downtoworld/filament-multilanguage)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/downtoworld/filament-multilanguage/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/downtoworld/filament-multilanguage/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/downtoworld/filament-multilanguage/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/downtoworld/filament-multilanguage/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/downtoworld/filament-multilanguage.svg?style=flat-square)](https://packagist.org/packages/downtoworld/filament-multilanguage)\n\nThis package aims to auto-discover most of the places that should be translated from your Filament application. \n\nThen it also lets you translate them directly from the UI while using a cache driver so there is no performance issues.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require \"downtoworld/filament-multilanguage:dev-main\"\n```\n\nYou can add the plugin to your panel (normally AdminPanelProvider):\n\n```bash\nuse DTW\\FilamentMultilanguage\\FilamentMultilanguagePlugin;\n\n$panel\n    ...\n    -\u003eplugin(new FilamentMultilanguagePlugin)\n    ...\n```\n\nYou can publish and run the migrations with:\n\n```bash\nphp artisan vendor:publish --tag=\"filament-multilanguage-migrations\"\nphp artisan migrate\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"filament-multilanguage-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'languages' =\u003e ['en', 'es', 'fr'], // CONFIGURE YOUR AVAILABLE LOCALES HERE\n    'authorized_emails' =\u003e [\n        //user@user.com INSERT YOUR EMAILS HERE\n    ]\n];\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n-   [Sergio Rodenas](https://github.com/sergiorodenas)\n-   [All Contributors](../../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%2Fdowntoworld%2Ffilament-multilanguage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdowntoworld%2Ffilament-multilanguage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdowntoworld%2Ffilament-multilanguage/lists"}