44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $app_name
|
|
* @property string $app_company
|
|
* @property string $app_description
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property int $created_by
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property int $updated_by
|
|
* @property string $app_domain
|
|
* @property int $is_delete
|
|
* @property string $app_keywords
|
|
* @property string $app_filing
|
|
* @property string $app_filing_url
|
|
* @property string $app_extra
|
|
* @property string $app_logo
|
|
* @property int $app_template
|
|
*/
|
|
class AppWebsiteConfig extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'app_website_config';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'created_at' => 'datetime', 'created_by' => 'integer', 'updated_at' => 'datetime', 'updated_by' => 'integer', 'is_delete' => 'integer', 'app_template' => 'integer'];
|
|
}
|