From d4fac608dafd32adc2f617071e31db85c76f2ca2 Mon Sep 17 00:00:00 2001 From: nunomira Date: Mon, 20 Jul 2015 18:12:40 +0100 Subject: [PATCH] text correction changed from "access the User the owns the phone" to "access the User that owns the phone" --- eloquent-relationships.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eloquent-relationships.md b/eloquent-relationships.md index 3e93870698b..8b14e3761e2 100644 --- a/eloquent-relationships.md +++ b/eloquent-relationships.md @@ -73,7 +73,7 @@ Additionally, Eloquent assumes that the foreign key should have a value matching #### Defining The Inverse Of The Relation -So, we can access the `Phone` model from our `User`. Now, let's define a relationship on the `Phone` model that will let us access the `User` the owns the phone. We can define the inverse of a `hasOne` relationship using the `belongsTo` method: +So, we can access the `Phone` model from our `User`. Now, let's define a relationship on the `Phone` model that will let us access the `User` that owns the phone. We can define the inverse of a `hasOne` relationship using the `belongsTo` method: