Files
nexusphp/app/Models/TorrentState.php

21 lines
405 B
PHP
Raw Normal View History

<?php
namespace App\Models;
2025-10-12 03:48:04 +07:00
use App\Models\Traits\NexusActivityLogTrait;
class TorrentState extends NexusModel
{
2025-10-12 03:48:04 +07:00
use NexusActivityLogTrait;
2022-08-26 17:35:49 +08:00
protected $fillable = ['global_sp_state', 'deadline', 'begin'];
protected $table = 'torrents_state';
public function getGlobalSpStateTextAttribute()
{
return Torrent::$promotionTypes[$this->global_sp_state]['text'] ?? '';
}
}