45 lines
849 B
PHP
45 lines
849 B
PHP
<?php
|
|
|
|
namespace App\Models\Ecommerce\Product\Review;
|
|
|
|
use App\Models\Ecommerce\Product\Product\Product;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Review extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'user_id',
|
|
'product_id',
|
|
'rating',
|
|
'title',
|
|
'content',
|
|
'is_visible',
|
|
'is_recommended',
|
|
'source',
|
|
];
|
|
|
|
/**
|
|
* Author
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
/**
|
|
* Product
|
|
*/
|
|
public function product(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
}
|