Added billing information to inertia data

This commit is contained in:
Constantin Graf
2024-07-01 18:33:59 +02:00
parent 726c2ee623
commit 8ddce667cc
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Service;
use App\Models\Organization;
class BillingContract
{
public function hasSubscription(Organization $organization): bool
{
return false;
}
}