HEX
Server: LiteSpeed
System: Linux my-kul-web2054.main-hosting.eu 5.14.0-611.13.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 11 04:57:59 EST 2025 x86_64
User: u665686179 (665686179)
PHP: 8.2.30
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: /home/u665686179/domains/dealkr.com/public_html/Modules/AI/app/Models/AISetting.php
<?php

namespace Modules\AI\app\Models;

use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Modules\AI\Database\factories\AISettingFactory;

/**
 * Class AISetting
 *
 * @property int $id
 * @property string $ai_name
 * @property string|null $base_url
 * @property string|null $api_key
 * @property string|null $organization_id
 * @property int|null $generate_limit
 * @property int|null $image_upload_limit
 * @property array|string|null $settings
 * @property int $status
 * @property Carbon|null $created_at
 * @property Carbon|null $updated_at
 */
class AISetting extends Model
{
    use HasFactory;

    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'ai_settings';

    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
        'ai_name',
        'base_url',
        'api_key',
        'organization_id',
        'generate_limit',
        'image_upload_limit',
        'settings',
        'status',
    ];

    /**
     * Create a new factory instance for the model.
     *
     * @return \Modules\AI\Database\factories\AISettingFactory
     */
    protected static function newFactory(): AISettingFactory
    {
        // return AISettingFactory::new();
    }
}