|bool */ protected $guarded = ['id']; protected $table = 'reminder_rules'; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'active' => 'boolean', ]; /** * Get the account record associated with the reminder. * * @return BelongsTo */ public function account() { return $this->belongsTo(Account::class); } }