47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'settings';
|
|
protected $fillable = [
|
|
'website_logo',
|
|
'fabicon',
|
|
'organization_name',
|
|
'organization_phone',
|
|
'organization_address',
|
|
'copyright_content',
|
|
'document_name_prefix',
|
|
'temporary_document_name_prefix',
|
|
'incoming_document_name',
|
|
'out_going_document_name',
|
|
'internal_document_name',
|
|
'notes_document_name',
|
|
'document_sequential_number_start_value',
|
|
'document_random_number_range',
|
|
'comment_text_limit',
|
|
'topic_text_limit',
|
|
'additional_notes_text_limit',
|
|
'allowed_uploaded_file_type',
|
|
'registration_number_prefix',
|
|
'outgoing_registration_number_prefix',
|
|
'internal_registration_number_prefix',
|
|
'temporary_registration_number_prefix',
|
|
'is_registration_number_with_date',
|
|
'default_language',
|
|
'data_limit_per_page',
|
|
'dashboard_data_limit',
|
|
'default_disk_quota',
|
|
'user_file_size_limit',
|
|
'notification_refreshing_time',
|
|
];
|
|
}
|