D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
re-viewers.com
/
app
/
Models
/
Filename :
Rating.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Rating extends Model { protected $fillable = ['product_id', 'ip_address', 'rating', 'user_id']; public function product() { return $this->belongsTo('App\Models\Product'); } }