File: /var/www/art.akrozia.org/app/Product.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable = [
'position',
'name_bg',
'name_en',
'description_bg',
'description_en',
];
protected $table = 'products';
public function sections() {
return $this->belongsToMany('App\Section', 'product_sections');
}
public function images()
{
return $this->hasMany('App\Productimage');
}
public function tags()
{
return $this->belongsToMany('App\Tag', 'product_tags');
}
}