Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
where(
'post_type', fluentcrmTemplateCPTSlug()
)->whereIn('post_status', $types);
}
public function scopeCampaignTemplate($query)
{
return $query->where(
'post_type', fluentcrmCampaignTemplateCPTSlug()
)->where('post_status', 'publish');
}
public function campaign()
{
return $this->hasOne(__NAMESPACE__.'\\'.'Campaign', 'template_id', 'ID');
}
public function render($content = null)
{
$content = $content ?: $this->post_content;
return Parser::parse($content, []);
}
}