treyb Actually, I had started working on this. At some point, I got distracted and even forgot that I had started. I must say, though, that there has been significant progress. However, I’m not sure if I will finish it.
As I delved into topics like reporting the approval status of feedback, I started feeling overwhelmed and decided to pause for now. I'm sharing a few images and localization files to give an idea of the progress.
Below, you can also see that I was working on a score system for use in badges. The project has grown significantly due to the addition of many details such as the score system, reporting system, and unapproved comment system.
If anyone wants to take over the project, I’d be happy to share the current files for free.
Trade Feedback Profile Page

Controllers

FeedbackCreatedListener.php section:
/**
* @param FeedbackCreated $event
*/
public function handle(FeedbackCreated $event)
{
$feedback = $event->feedback;
$toUser = $feedback->toUser;
// Update trader stats
$stats = TraderStats::firstOrNew(['user_id' => $toUser->id]);
if ($feedback->type === 'positive') {
$stats->positive_count++;
} elseif ($feedback->type === 'negative') {
$stats->negative_count++;
} else {
$stats->neutral_count++;
}
// Calculate score (percentage of positive feedback)
$total = $stats->positive_count + $stats->neutral_count + $stats->negative_count;
$stats->score = $total > 0 ? ($stats->positive_count / $total) * 100 : 0;
$stats->last_updated = now();
$stats->save();
// Send notification to the user
if ($feedback->is_approved) {
$this->notifications->sync(
new NewFeedbackBlueprint($feedback),
[$toUser]
);
}
}
en.yml file:
huseyinfiliz-traderfeedback:
# Forum translations
forum:
nav:
feedback_link: Trader Feedback
form:
title: "Give feedback to {username}"
type_label: Feedback Type
type_positive: Positive
type_neutral: Neutral
type_negative: Negative
role_label: Your Role
role_buyer: Buyer
role_seller: Seller
role_trader: Trader
transaction_id_label: Transaction ID (optional)
transaction_id_placeholder: Enter transaction ID or link to discussion
comment_label: Comment
comment_placeholder: Describe your trading experience with this user
submit_button: Submit Feedback
error_too_short: Comment must be at least {min} characters
error_too_long: Comment must be at most {max} characters
success: Feedback submitted successfully
user_card:
score_tooltip: Trader Score
positive_tooltip: Positive Feedbacks
neutral_tooltip: Neutral Feedbacks
negative_tooltip: Negative Feedbacks
feedback_page:
title: "{username}'s Trader Feedback"
stats:
score: Score
total: Total Feedbacks
positive: Positive
neutral: Neutral
negative: Negative
no_feedback: This user has not received any feedback yet
give_feedback_button: Give Feedback
filter:
all: All Feedbacks
positive: Positive Only
neutral: Neutral Only
negative: Negative Only
as_buyer: As Buyer
as_seller: As Seller
as_trader: As Trader
sort:
newest: Newest First
oldest: Oldest First
feedback_item:
as_buyer: as Buyer
as_seller: as Seller
as_trader: as Trader
report_button: Report
delete_button: Delete
edit_button: Edit
confirm_delete: Are you sure you want to delete this feedback?
report_modal:
title: Report Feedback
reason_label: Reason
reason_placeholder: Explain why you are reporting this feedback
submit_button: Submit Report
success: Feedback reported successfully
notifications:
new_feedback_title: "{username} gave you {type} feedback"
feedback_approved_title: "Your feedback to {username} was approved"
feedback_rejected_title: "Your feedback to {username} was rejected"
# Admin translations
admin:
permissions:
give_feedback: Give trader feedback
moderate_feedback: Moderate trader feedback
settings:
title: Trader Feedback Settings
help_text: Configure the trader feedback system
allow_negative_label: Allow negative feedback
require_approval_label: Require approval for feedback
min_length_label: Minimum comment length
max_length_label: Maximum comment length
submit_button: Save Settings
dashboard:
title: Trader Feedback Statistics
total_feedbacks: Total Feedbacks
positive_feedbacks: Positive Feedbacks
neutral_feedbacks: Neutral Feedbacks
negative_feedbacks: Negative Feedbacks
pending_approvals: Pending Approvals
reported_feedbacks: Reported Feedbacks
reports:
title: Reported Feedbacks
no_reports: No reported feedbacks
user_reported: "Reported by {username}"
approve_button: Approve
reject_button: Reject
dismiss_button: Dismiss Report
confirm_approve: Are you sure you want to approve this feedback?
confirm_reject: Are you sure you want to reject this feedback?
confirm_dismiss: Are you sure you want to dismiss this report?
approvals:
title: Pending Approvals
no_approvals: No pending approvals
approve_button: Approve
reject_button: Reject
confirm_approve: Are you sure you want to approve this feedback?
confirm_reject: Are you sure you want to reject this feedback?