Initial commit

This commit is contained in:
gustavooth
2026-07-23 22:56:30 -03:00
commit 22a1006598
1816 changed files with 410742 additions and 0 deletions
@@ -0,0 +1,76 @@
<?php
namespace FluentCrm\App\Models;
/**
* FunnelSubscriber Model - DB Model for Automation Subscribers
*
* Database Model
*
* @package FluentCrm\App\Models
*
* @version 1.0.0
*/
class FunnelSubscriber extends Model
{
protected $table = 'fc_funnel_subscribers';
protected $fillable = [
'funnel_id',
'subscriber_id',
'status',
'type',
'next_sequence',
'next_sequence_id',
'last_sequence_id',
'last_sequence_status',
'last_executed_time',
'next_execution_time',
'starting_sequence_id',
'source_trigger_name',
'source_ref_id',
'notes'
];
public function scopeActive($query)
{
return $query->where('status', 'active');
}
public function funnel()
{
return $this->belongsTo(
__NAMESPACE__ . '\Funnel', 'funnel_id', 'id'
);
}
public function next_sequence_item()
{
return $this->belongsTo(
__NAMESPACE__ . '\FunnelSequence', 'next_sequence_id', 'id'
);
}
public function last_sequence()
{
return $this->belongsTo(
__NAMESPACE__ . '\FunnelSequence', 'last_sequence_id', 'id'
);
}
public function metrics()
{
return $this->hasMany(
__NAMESPACE__ . '\FunnelMetric', 'subscriber_id', 'subscriber_id'
);
}
public function subscriber()
{
return $this->belongsTo(
__NAMESPACE__ . '\Subscriber', 'subscriber_id', 'id'
);
}
}