* @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\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use AllowDynamicProperties; /** * App\Models\TmdbGenre. * * @property int $id * @property string $name */ #[AllowDynamicProperties] final class TmdbGenre extends Model { /** @use HasFactory<\Database\Factories\TmdbGenreFactory> */ use HasFactory; protected $guarded = []; public $timestamps = false; /** * Get the movies that belong to the genre. * * @return BelongsToMany */ public function movie(): BelongsToMany { return $this->belongsToMany(TmdbMovie::class); } /** * Get the tv shows that belong to the genre. * * @return BelongsToMany */ public function tv(): BelongsToMany { return $this->belongsToMany(TmdbTv::class); } }