84 lines
2.1 KiB
PHP
84 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace FluentCrm\App\Models;
|
|
|
|
/**
|
|
* Lists Model - DB Model for Contact Lists
|
|
*
|
|
* Database Model
|
|
*
|
|
* @package FluentCrm\App\Models
|
|
*
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
class Lists extends Model
|
|
{
|
|
protected $table = 'fc_lists';
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* $searchable Columns in table to search
|
|
* @var array
|
|
*/
|
|
protected $searchable = [
|
|
'title',
|
|
'slug',
|
|
'description'
|
|
];
|
|
|
|
|
|
/**
|
|
* Local scope to filter subscribers by search/query string
|
|
* @param ModelQueryBuilder $query
|
|
* @param string $search
|
|
* @return ModelQueryBuilder
|
|
*/
|
|
public function scopeSearchBy($query, $search)
|
|
{
|
|
if ($search) {
|
|
$fields = $this->searchable;
|
|
$query->where(function ($query) use ($fields, $search) {
|
|
$query->where(array_shift($fields), 'LIKE', "%$search%");
|
|
foreach ($fields as $field) {
|
|
$query->orWhere($field, 'LIKE', "$search%");
|
|
}
|
|
});
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
/**
|
|
* Many2Many: List belongs to many Subscriber
|
|
*
|
|
* @return \FluentCrm\App\Models\Base\Collection
|
|
*/
|
|
public function subscribers()
|
|
{
|
|
return $this->belongsToMany(
|
|
__NAMESPACE__.'\Subscriber', 'fc_subscriber_pivot', 'object_id', 'subscriber_id'
|
|
)->where('object_type', __CLASS__);
|
|
}
|
|
|
|
public function totalCount()
|
|
{
|
|
return fluentCrmDb()->table('fc_subscriber_pivot')
|
|
->where('object_type', 'FluentCrm\App\Models\Lists')
|
|
->where('object_id', $this->id)
|
|
->count();
|
|
}
|
|
|
|
public function countByStatus($status = 'subscribed')
|
|
{
|
|
return fluentCrmDb()->table('fc_subscriber_pivot')
|
|
->where('fc_subscriber_pivot.object_type', 'FluentCrm\App\Models\Lists')
|
|
->where('fc_subscriber_pivot.object_id', $this->id)
|
|
->join('fc_subscribers', 'fc_subscribers.id', '=', 'fc_subscriber_pivot.subscriber_id')
|
|
->where('fc_subscribers.status', $status)
|
|
->count();
|
|
}
|
|
|
|
}
|