{"id":15024970,"url":"https://github.com/team-tea-time/laravel-forum","last_synced_at":"2026-04-08T19:31:04.552Z","repository":{"id":24727625,"uuid":"28139801","full_name":"Team-Tea-Time/laravel-forum","owner":"Team-Tea-Time","description":"A slim, lean forum package designed for quick and easy integration in Laravel projects","archived":false,"fork":false,"pushed_at":"2025-03-21T20:34:22.000Z","size":1988,"stargazers_count":620,"open_issues_count":6,"forks_count":166,"subscribers_count":29,"default_branch":"7.x","last_synced_at":"2025-04-10T20:55:31.862Z","etag":null,"topics":["forum","laravel","laravel-package","php","php7","php8"],"latest_commit_sha":null,"homepage":"https://laravel-forum.teamteatime.net/","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/Team-Tea-Time.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2014-12-17T14:06:59.000Z","updated_at":"2025-04-06T08:10:19.000Z","dependencies_parsed_at":"2024-01-17T08:00:01.784Z","dependency_job_id":"1dba8089-8492-49f1-8085-cfd2335cabcf","html_url":"https://github.com/Team-Tea-Time/laravel-forum","commit_stats":{"total_commits":767,"total_committers":44,"mean_commits":"17.431818181818183","dds":0.5671447196870926,"last_synced_commit":"ab30473b1399ecdc5279dc61f729d79106ede7f5"},"previous_names":[],"tags_count":126,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Team-Tea-Time%2Flaravel-forum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Team-Tea-Time%2Flaravel-forum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Team-Tea-Time%2Flaravel-forum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Team-Tea-Time%2Flaravel-forum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Team-Tea-Time","download_url":"https://codeload.github.com/Team-Tea-Time/laravel-forum/tar.gz/refs/heads/7.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254059519,"owners_count":22007771,"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","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":["forum","laravel","laravel-package","php","php7","php8"],"created_at":"2024-09-24T20:01:17.920Z","updated_at":"2025-12-17T00:32:03.604Z","avatar_url":"https://github.com/Team-Tea-Time.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Tests](https://github.com/Team-Tea-Time/laravel-forum/actions/workflows/tests.yml/badge.svg) ![phpcs](https://github.com/Team-Tea-Time/laravel-forum/actions/workflows/phpcs.yml/badge.svg) ![Packagist Downloads](https://img.shields.io/packagist/dm/riari/laravel-forum) ![Packagist License](https://img.shields.io/packagist/l/riari/laravel-forum)\n\n![Laravel Forum Logo](./logo.png)\n\n**Complete documentation is available on [teamteatime.net](https://www.teamteatime.net/).**\n\n## Versions\n\n| **Laravel version** | **Package version** | **PHP version** |\n|---------------------|---------------------|-----------------|\n| 12                  | ^7.0                | ^8.2            |\n| 11                  | ^6.0                | ^8.2            |\n\nPlease note that older package versions not listed above are no longer maintained or supported.\n\nSee the [support policy in the Laravel docs](https://laravel.com/docs/11.x/releases#support-policy) for more information about Laravel release versions, their supported PHP versions, and how long they receive bug \u0026 security fixes.\n\n## Installation\n\n### Step 1: Install the package\n\nInstall the package via composer:\n\n```\ncomposer require riari/laravel-forum:^6.0\n```\n\n[Package Discovery](https://laravel.com/docs/11.x/packages#package-discovery) should take care of registering the service provider automatically, but if you need to do so manually, add the service provider to your `bootstrap/providers.php`:\n\n```php\nTeamTeaTime\\Forum\\ForumServiceProvider::class,\n```\n\n### Step 2: Publish the package files\n\nRun the vendor:publish command to publish the package config, translations and migrations to your app's directories:\n\n`php artisan vendor:publish`\n\n### Step 3: Update your database\n\nRun your migrations:\n\n`php artisan migrate`\n\n### Step 4: Install a UI preset\n\nA `forum:preset-install {name}` command is available for installing UI presets. Run `forum:preset-list` to see a list of available presets. You must install one of these to publish the corresponding views to your application. For example:\n\n`php artisan forum:preset-install livewire-tailwind`\n\n\u003e [!NOTE]  \n\u003e By default, the `livewire-tailwind` preset is set as the active one in the `forum.frontend.preset` config value. This preset requires Livewire and a few other dependencies. Refer to [UI Presets](https://www.teamteatime.net/docs/laravel-forum/6.x/front-end/ui-presets) for details.\n\n### Additional steps\n\n#### Configuration\n\nSeveral configuration files are published to `config/forum`. Refer to these for a variety of options for changing the behaviour of the forum and how it integrates with key parts of your application code.\n\n\u003e [!NOTE]  \n\u003e You may need to modify the `forum.integration.user_name` config option according to your user model. This specifies which attribute on the user model should be used as a display name in the forum views.\n\n#### Translations\n\nLaravel Forum currently supports 15 languages: German, English, Spanish, French, Italian, Dutch, Romanian, Russian, Thai, Turkish, Serbian, Portuguese (Brazil), Swedish, Chinese, and Indonesian. The translation files are published to `resources/lang/vendor/forum/{locale}`.\n\n\u003e [!NOTE]  \n\u003e Some new language strings have been introduced in version 6 but not yet translated; PRs to translate these would be greatly appreciated.\n\n## Development\n\nIf you wish to contribute, an easy way to set up the package for local development is [Team-Tea-Time/laravel-studio](https://github.com/Team-Tea-Time/laravel-studio), which is set up to load a local working copy of this repository (see the [readme](https://github.com/Team-Tea-Time/laravel-studio/blob/11.x/readme.md#usage) for usage details).\n\n### Running tests\n\nBring up the MySQL service:\n\n```bash\ndocker-compose up -d mysql\n```\n\nInstall Composer dependencies:\n\n```bash\ndocker-compose run --rm composer install\n```\n\nRun the phpunit container to execute tests:\n\n```bash\ndocker-compose run --rm phpunit\n```\n\n### Seeding\n\nThe package tables can be seeded with sample categories, threads, posts, and a user via `forum:seed`:\n\n```bash\ndocker-compose exec php-fpm php artisan forum:seed\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteam-tea-time%2Flaravel-forum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteam-tea-time%2Flaravel-forum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteam-tea-time%2Flaravel-forum/lists"}