trypost/app/Features/BrandLimit.php
2026-04-14 18:44:47 -03:00

15 lines
217 B
PHP

<?php
declare(strict_types=1);
namespace App\Features;
use App\Models\Workspace;
class BrandLimit
{
public function resolve(Workspace $scope): int
{
return $scope->plan?->brand_limit ?? 0;
}
}