Handling of event addons

This commit is contained in:
2026-08-12 17:18:45 +02:00
parent 085299336e
commit 6e4e6b645c
74 changed files with 3072 additions and 95 deletions
+16 -1
View File
@@ -21,6 +21,11 @@ use App\Scopes\CommonModel;
* @property string $url_participation_rules
* @property boolean $events_allowed
* @property boolean $has_active_instance
* @property boolean $tax_liable
* @property int $vat_rate
* @property string|null $tax_exemption_reason
* @property string|null $tax_exemption_note
* @property string $vat_pricing_mode
*/
class Tenant extends CommonModel
{
@@ -46,6 +51,16 @@ class Tenant extends CommonModel
'impress_text',
'url_participation_rules',
'is_active_local_group',
'has_active_instance'
'has_active_instance',
'tax_liable',
'vat_rate',
'tax_exemption_reason',
'tax_exemption_note',
'vat_pricing_mode',
];
protected $casts = [
'tax_liable' => 'boolean',
'vat_rate' => 'integer',
];
}