Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Created June 3, 2017 19:12
Show Gist options
  • Save aguimaraes/01201ba00e3e4c05d59062fc1bd8ce63 to your computer and use it in GitHub Desktop.
Save aguimaraes/01201ba00e3e4c05d59062fc1bd8ce63 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class FeatureToggle extends Model
{
public $timestamps = true;
public function getCurrentToggleConfig(): FeatureToggle
{
return $this->firstOrNew();
}
public function isFraudDetectionEnabled(): bool
{
return (bool)$this->getCurrentToggleConfig()->fraud_detection ?? false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment