Laravel Eloquent Relationships

In this article, we will see laravel eloquent relationships. laravel provides many relationships like laravel hasmany, laravel belongsto, wherehas laravel, many to many relationships laravel, eloquent relationships, one to many relationships laravel, one to one relationship laravel, here we will see all relationship with example.

There are 3 types of relationships in laravel:

  • One to one relationship
  • One to many relationship
  • Many to many relationship

 

One to One Relationship

The one to one relationship is basic in laravel. This type of relationship means that a model of type A may only be linked to one model of type B, and vice versa. For example, a relationship between a User model and a Passport model would be a one to one relationship. A user can only have one passport, and a passport only belongs to one user.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    public function passport() {
        return $this->hasOne(App\Passport::class);
    }
}

 

 

Otherside the Passport model we will define the inverse of the relationship. We let the Passport model know that it belongs to a User.


<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Passport extends Model
{
    public function user() {
        return $this->belongsTo(App\User::class);
    }
}

 

One to Many Relationship

One to Many relationship means that one model of type A may be linked to multiple models of type B. But the model of type B belongs to only one model of type A.

For example, a relationship between a User model and an Invoice model would be a one to many relationship. A user can have multiple invoices, but an invoice only belongs to one user.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    public function invoices() {
        return $this->hasMany(App\Invoice::class);
    }
}

 

 

All we have to do now is let the Invoice model know that it belongs to a User model. here we define the inverse of the one to many relationship.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Invoice extends Model
{
    public function user() {
        return $this->belongsTo(App\User::class);
    }
}

 

Many to Many Relationship

Many to many relationship mean that one model of type A may be linked to multiple models of type B, and vice versa.

For example, a relationship between an Invoice model and a Product model would be a many to many relationship. An invoice can have multiple products and a product can be on multiple invoices.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Invoice extends Model
{
    public function products() {
        return $this->belongsToMany(App\Product::class);
    }
}

 

 

And you can define the inverse of this relationship like below:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Product extends Model
{
    public function invoices() {
        return $this->belongsToMany(App\Invoice::class);
    }
}

Many to many relationships are slightly more difficult to implement because they require a junction table in the database. You can create this junction table in Laravel by creating a migration file.

 


You might also like :

RECOMMENDED POSTS

FEATURE POSTS