<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class FunnelProductLink extends Model
{
protected $fillable = [
'funnel_id', 'funnel_product_id', 'sort_order', 'custom_price',
];
public function funnel()
{
return $this->belongsTo(Funnel::class);
}
public function funnelProduct()
{
return $this->belongsTo(FunnelProduct::class);
}
}