Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: parallax/filament-comments
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.2.0
Choose a base ref
...
head repository: parallax/filament-comments
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,34 @@

All notable changes to `filament-comments` will be documented in this file.

# 1.5.1 - March 27, 2025

- Fixes comment count in action

# 1.5.0 - March 27, 2025

- Adds Laravel 12 support (Credit [@CodeWithDennis](https://github.com/CodeWithDennis))
- Adds Arabic translations (Credit [@majdghithan](https://github.com/majdghithan))
- Adds French tooltip translation (Credit [@agencetwogether](https://github.com/agencetwogether))
- Fix "Call to a member function filamentComments() on null" (Credit [@teodino93](https://github.com/teodino93))

# 1.4.0 - January 3, 2025

- Dependency upgrades
- Adds French translations 🇫🇷 (Credit [@agencetwogether](https://github.com/agencetwogether))
- Adds "Delete comment" translation (Credit [@maxime9446](https://github.com/maxime9446))

# 1.3.1 - June 6, 2024

- Fixes missing closing bracket

# 1.3.0 - June 6, 2024

- Adds Persian translations 🇮🇷 (Credit [@amiralidev](https://github.com/amiralidev))
- Adds ability to define custom comment model class (Credit [@ziming](https://github.com/ziming))
- Adds markdown editor support (Credit [@ziming](https://github.com/ziming))
- Eager loads comment user (Credit [@ziming](https://github.com/ziming))

# 1.2.0 - Mar 15, 2024

- Adds German transations 🇩🇪 (Credit [@dissto](https://github.com/dissto))
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
"php": "^8.1",
"filament/filament": "^3.0",
"spatie/laravel-package-tools": "^1.15.0",
"illuminate/contracts": "^10.0 | ^11.0"
"illuminate/contracts": "^10.0 | ^11.0 | ^12.0"
},
"autoload": {
"psr-4": {
12 changes: 12 additions & 0 deletions config/filament-comments.php
Original file line number Diff line number Diff line change
@@ -15,6 +15,12 @@
'empty' => 'heroicon-s-chat-bubble-left-right',
],


/*
* The comment model to be used
*/
'comment_model' => \Parallax\FilamentComments\Models\FilamentComment::class,

/*
* The policy that will be used to authorize actions against comments.
*/
@@ -27,6 +33,12 @@
*/
'prune_after_days' => 30,


/*
* Options: 'rich', 'markdown'
*/
'editor' => 'rich',

/*
* The rich editor toolbar buttons that are available to users.
*/
Loading