* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Models; use App\Models\Scopes\ApprovedScope; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use AllowDynamicProperties; /** * App\Models\TorrentTrump. * * @property int $id * @property int $torrent_id * @property int $user_id * @property string $reason * @property \Illuminate\Support\Carbon $created_at * @property \Illuminate\Support\Carbon $updated_at */ #[AllowDynamicProperties] final class TorrentTrump extends Model { /** * The attributes that aren't mass assignable. * * @var string[] */ protected $guarded = ['id', 'created_at', 'updated_at']; /** * Get the torrent that can be trumped. * * @return BelongsTo */ public function torrent(): BelongsTo { return $this->belongsTo(Torrent::class)->withoutGlobalScope(ApprovedScope::class)->withTrashed(); } /** * Get the user that created the trump message. * * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class)->with('group')->withTrashed(); } }