* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use AllowDynamicProperties; /** * App\Models\IgdbGenre. * * @property int $id * @property string $name */ #[AllowDynamicProperties] final class IgdbGenre extends Model { /** * The attributes that are mass assignable. * * @var string[] */ protected $guarded = []; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * Get the games that belong to the genre. * * @return BelongsToMany */ public function games(): BelongsToMany { return $this->belongsToMany(IgdbGame::class); } }