Laravel Eloquent Relationships

    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);
    }
}
Read Also : Laravel 8 Socialite Login with Facebook Account

 

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.

Read Also :  Laravel Accessor and Mutator Example
Bình luận
Vui lòng đăng nhập để bình luận
Một số bài viết liên quan