<?php namespace App; use Illuminate\Database\Eloquent\Model; class ContragentPromotionDetail extends Model { protected $fillable = [ 'contragent_promotion_id', 'article_code', 'value', 'direction', 'type', ]; protected $table = 'contragent_promotion_details'; public function promotion() { return $this->belongsTo(ContragentPromotion::class, 'contragent_promotion_id'); } }