mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
13 lines
175 B
PHP
13 lines
175 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
trait CanModerate
|
|
{
|
|
public function toggleDisabled(): void
|
|
{
|
|
$this->disabled = ! $this->disabled;
|
|
$this->save();
|
|
}
|
|
}
|