Clockwork\Web\Support\Laravel\ClockworkWebSupport::isEnabled PHP Method

isEnabled() public method

public isEnabled ( )
    public function isEnabled()
    {
        $is_enabled = $this->getConfig('enable', null);
        if ($is_enabled === null) {
            $is_enabled = $this->app['clockwork.support']->isEnabled();
        }
        return $is_enabled;
    }