19 lines
421 B
PHP
19 lines
421 B
PHP
<?php
|
|
|
|
namespace Webkul\Product\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Customer\Models\Customer;
|
|
|
|
class ProductReview extends Model
|
|
{
|
|
protected $fillable = ['comment','title','rating','status','product_id','customer_id'];
|
|
|
|
/**
|
|
* Get the product attribute family that owns the product.
|
|
*/
|
|
public function customer()
|
|
{
|
|
return $this->belongsTo(Customer::class);
|
|
}
|
|
} |