diff --git a/app/Nova/Lenses/BaseLens.php b/app/Nova/Lenses/BaseLens.php index fdcac65fb..b016ceffc 100644 --- a/app/Nova/Lenses/BaseLens.php +++ b/app/Nova/Lenses/BaseLens.php @@ -13,27 +13,6 @@ use Laravel\Nova\Lenses\Lens; */ abstract class BaseLens extends Lens { - /** - * Indicates whether the resource should automatically poll for new resources. - * - * @var bool - */ - public static $polling = true; - - /** - * The interval at which Nova should poll for new resources. - * - * @var int - */ - public static $pollingInterval = 60; - - /** - * Indicates whether to show the polling toggle button inside Nova. - * - * @var bool - */ - public static $showPollingToggle = true; - /** * Get the query builder / paginator for the lens. * diff --git a/app/Nova/Resources/BaseResource.php b/app/Nova/Resources/BaseResource.php index ee3aaa581..e917b9165 100644 --- a/app/Nova/Resources/BaseResource.php +++ b/app/Nova/Resources/BaseResource.php @@ -27,27 +27,6 @@ abstract class BaseResource extends NovaResource */ public static $scoutSearchResults = 10; - /** - * Indicates whether the resource should automatically poll for new resources. - * - * @var bool - */ - public static $polling = true; - - /** - * The interval at which Nova should poll for new resources. - * - * @var int - */ - public static $pollingInterval = 60; - - /** - * Indicates whether to show the polling toggle button inside Nova. - * - * @var bool - */ - public static $showPollingToggle = true; - /** * The number of resources to show per page via relationships. *