Different between belongs to and has one?

imagediffrent

i don’t know what difference

Its just the way you read, using yor image as example:

User (id - primary key) => hasOne => Profile (user_id - foreing key)
this way the developer and the application know that when you are at a USER context and need to look for this user PROFILE information you should search in the profiles table by the user foreing key (user_id)

Profile (user_id - foreing key) => BelongsTo => User (id - primary key)
in this other way when you are at a profile context and need know whats the associated user of this profile you should search the user’s primary key (id) in USERS table

all this information are used to compose the sql joins