<?php namespace bff\modules\sendmail\models; use Sendmail; use bff\db\illuminate\Model; /** * Sendmail: template model * @copyright Tamaranga */ class Template extends Model { protected $table = Sendmail::TABLE_SENDMAIL_TEMPLATES; protected $casts = [ 'subject' => 'json', 'body' => 'json', ]; }