Files
postshop-backend/app/Models/System/VersionManagement/AppVersion.php
Mekan1206 c46eccb24f Refactor code for improved readability and consistency
- Removed unnecessary blank lines in various files to enhance code clarity.
- Updated comments for consistency and clarity across multiple classes and methods.
- Adjusted spacing in test files for better formatting and readability.
2026-02-08 02:24:43 +05:00

45 lines
889 B
PHP

<?php
namespace App\Models\System\VersionManagement;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $version
* @property string $os
* @property bool $important
* @property string $notes
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
*/
class AppVersion extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'app_versions';
/**
* The attributes that are mass assignable.
*
* version - string
* os - string | in: ios, android
* important - bool
* notes - ?string
*
* @var array<string>
*/
protected $fillable = [
'version',
'os',
'important',
'notes',
];
}