1, 'name' => '禁转', 'color' => '#ff0000', ], [ 'id' => 2, 'name' => '首发', 'color' => '#8F77B5', ], [ 'id' => 3, 'name' => '官方', 'color' => '#0000ff', ], [ 'id' => 4, 'name' => 'DIY', 'color' => '#46d5ff', ], [ 'id' => 5, 'name' => '国语', 'color' => '#6a3906', ], [ 'id' => 6, 'name' => '中字', 'color' => '#006400', ], [ 'id' => 7, 'name' => 'HDR', 'color' => '#38b03f', ], ]; public static function listSpecial(): array { return array_filter([ Setting::get('bonus.official_tag'), Setting::get('bonus.zero_bonus_tag'), ]); } public function torrents(): \Illuminate\Database\Eloquent\Relations\BelongsToMany { return $this->belongsToMany(Torrent::class, 'torrent_tags', 'tag_id', 'torrent_id'); } public function torrent_tags(): \Illuminate\Database\Eloquent\Relations\HasMany { return $this->hasMany(TorrentTag::class, 'tag_id'); } public function search_box(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(SearchBox::class, 'mode', 'id'); } }