Laravel Eloquent Relationships

Websolutionstuff | Mar-23-2021 | Categories : Laravel

In this example we will see Laravel Eloquent relationships, laravel provides many relationship like laravel hasmany, laravel belongsto, wherehas laravel, many to many relationship laravel, eloquent relationships, one to many relationship 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
  • One to many
  • Many to many

 

One to One

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 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

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.

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

Many to many relationship means 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.

 

Recommended Post
Featured Post
How To Fix cURL Error 60 SSL Certificate Problem
How To Fix cURL Error 60 SSL C...

In this example we see how to fix cURL error 60 SSL certificate problem. cURL error 60: SSL certificate proble...

Read More

Dec-08-2021

Mail: Laravel 11 Send Email using Queue
Mail: Laravel 11 Send Email us...

In this guide, we'll see how to send email using a queue in laravel 11. Here we'll see the concept of queue...

Read More

Apr-12-2024

Laravel 9 Livewire File Upload Example
Laravel 9 Livewire File Upload...

In this article, we will see the laravel 9 livewire file upload example. Here, we will learn how to upload files us...

Read More

Dec-02-2022

How To Upload Multiple Image In Laravel 9
How To Upload Multiple Image I...

 In this article, we will see how to upload multiple images in laravel 9. here, we will see the tutorial of multipl...

Read More

Mar-18-2022