40 lines
854 B
PHP
40 lines
854 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Scopes\CommonModel;
|
|
|
|
/**
|
|
* @property string $slug
|
|
* @property string $local_group
|
|
* @property string $email
|
|
* @property string $url
|
|
* @property string $account_iban
|
|
* @property string $city
|
|
* @property string $postcode
|
|
* @property string $gdpr_text
|
|
* @property string $impress_text
|
|
* @property string $url_participation_rules
|
|
* @property boolean $events_allowed
|
|
* @property boolean $has_active_instance
|
|
*/
|
|
class Tenant extends CommonModel
|
|
{
|
|
public const PRIMARY_TENANT_NAME = 'LV';
|
|
|
|
protected $fillable = [
|
|
'slug',
|
|
'local_group_name',
|
|
'email',
|
|
'url',
|
|
'account_iban',
|
|
'city',
|
|
'postcode',
|
|
'gdpr_text',
|
|
'impress_text',
|
|
'url_participation_rules',
|
|
'is_active_local_group',
|
|
'has_active_instance'
|
|
];
|
|
}
|