I'm new to Laravel and ORMs in general, and I'm trying to port a site I've already written over to it. I have one table that defines genres, and relate a books table to it by relating them through the book having a genre_id.
Is this a one-to-many relationship? It feels weird to say that a book "belongs to" a genre and a genre "has many" books. I'd rather say that a book "has" a genre and a genre "belongs to many" books, but that doesn't seem to exist.