Files
test_test/app/Models/Review.php
2026-04-06 18:44:02 +05:00

75 lines
1.6 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Review extends Model
{
protected $fillable = [
'user_id',
'product_id',
'rating',
'title',
'comment',
'advantages',
'disadvantages',
'helpful_count',
'unhelpful_count',
'is_approved'
];
protected $casts = [
'is_approved' => 'boolean',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
public function product(): BelongsTo
{
return $this->belongsTo(Product::class);
}
public function getDateAttribute(): string
{
return $this->created_at->format('d.m.Y');
}
public function getIsFreshAttribute(): bool
{
return $this->created_at->gt(now()->subWeek());
}
public function scopeApproved($query)
{
return $query->where('is_approved', true);
}
public function scopeByRating($query, $rating)
{
return $query->where('rating', $rating);
}
public function scopeHelpful($query)
{
return $query->orderBy('helpful_count', 'desc');
}
public function scopeLatest($query)
{
return $query->orderBy('created_at', 'desc');
}
public function scopeUserProduct($query, $userId, $productId)
{
return $query->where('user_id', $userId)
->where('product_id', $productId);
}
}