* @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\IgdbPlatform. * * @property int $id * @property string $name * @property ?string $platform_logo_image_id */ #[AllowDynamicProperties] final class IgdbPlatform 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 platform. * * @return BelongsToMany */ public function games(): BelongsToMany { return $this->belongsToMany(IgdbGame::class); } }