48 lines
935 B
PHP
48 lines
935 B
PHP
<?php
|
|
|
|
namespace Modules\Crm\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Campaign extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'crm_campaigns';
|
|
|
|
/**
|
|
* The attributes that aren't mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'contact_ids' => 'array',
|
|
'additional_info' => 'array',
|
|
'target_industry_ids' => 'array',
|
|
'target_regions' => 'array',
|
|
];
|
|
|
|
/**
|
|
* user who created a campaign.
|
|
*/
|
|
public function createdBy()
|
|
{
|
|
return $this->belongsTo(\App\User::class, 'created_by');
|
|
}
|
|
|
|
public static function getTags()
|
|
{
|
|
return ['{contact_name}', '{campaign_name}', '{business_name}'];
|
|
}
|
|
}
|