mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
17 lines
327 B
PHP
17 lines
327 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class TorrentState extends NexusModel
|
|
{
|
|
protected $fillable = ['global_sp_state', 'deadline', 'begin'];
|
|
|
|
protected $table = 'torrents_state';
|
|
|
|
public function getGlobalSpStateTextAttribute()
|
|
{
|
|
return Torrent::$promotionTypes[$this->global_sp_state]['text'] ?? '';
|
|
}
|
|
}
|