Laravel 9 Many To Many | BelongsToMany Eloquent Relationship Tutorial (ok)

https://www.laravelia.com/post/laravel-9-many-to-many-belongstomany-eloquent-relationship-tutorial

C:\xampp\htdocs\songkhoe\routes\web.php

<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\TestController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/test/{id}', [TestController::class,'index']);
Route::get('/test2/{id}', [TestController::class,'index2']);
Route::get('/create/{id}', [TestController::class,'create']);
Route::get('/create2/{id}', [TestController::class,'create2']);

C:\xampp\htdocs\songkhoe\app\Http\Controllers\TestController.php

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\User;
use App\Models\Role;
class TestController extends Controller
{
  public function index($id)
  {
    $user = User::find($id);
    foreach ($user->roles as $role) {
      echo $role->name . "<br/>";
    }
  }
  public function index2($id)
  {
    $role = Role::find($id);
    foreach ($role->users as $user) {
      echo $user->name . "<br/>";
    }
  }
  public function create($id)
  {
    $user = User::find($id);
    $roleIds = [1, 2];
    $user->roles()->attach($roleIds);
  }
  public function create2($id)
  {
    $role = Role::find($id);
    $userIds = [7, 8,9];
    $role->users()->attach($userIds);
  }
}

C:\xampp\htdocs\songkhoe\database\seeders\DatabaseSeeder.php

C:\xampp\htdocs\songkhoe\database\migrations\2014_10_12_000000_create_users_table.php

C:\xampp\htdocs\songkhoe\database\migrations\2022_11_18_042112_create_roles_table.php

C:\xampp\htdocs\songkhoe\database\migrations\2022_11_18_042240_create_role_user_table.php

C:\xampp\htdocs\songkhoe\database\factories\UserFactory.php

C:\xampp\htdocs\songkhoe\database\factories\RoleUserFactory.php

C:\xampp\htdocs\songkhoe\database\factories\RoleFactory.php

C:\xampp\htdocs\songkhoe\app\Models\User.php

C:\xampp\htdocs\songkhoe\app\Models\RoleUser.php

C:\xampp\htdocs\songkhoe\app\Models\Role.php

Category : #laravel

Tags : #laravel, #laravel eloquent relationship

Laravel Many-to-many eloquent relationships are a little bit more complicated than hasOne and hasMany relationships. An example of many to many relationships is a user with may have multiple roles, where the role are also connected with multiple users. We can define many to many relationships by using belongToMany() helper with a pivot table.

So in this tutorial, you are going to learn how to create many-to-many relationships with migration with a foreign key schema for one to many relationships, use sync with a pivot table, create records, attach records, get all records, delete, update, where condition and everything related to many to many relationship.

laravel-9-many-to-many-relationship

Table Structure Of Many to Many

To define belongsToMany() relationship, three database tables are needed: users, roles, and role_user. The role_user table is called pivot table and derived from the alphabetical order of the related model names and contains user_id and role_id columns. This table will be used as an intermediate table linking the users and roles.

MakefileCopy

Defining Many to Many Relationship

Many-to-many relationships can be defined by writing a method that returns the result of the belongsToMany method. So we can create a many to many relationship with roles for a user like:

app/Models/User.php

PHPCopy

Now define the same relationship in the Role model:

app/Models/Role.php

PHPCopy

Read also: Laravel One To One/HasOne Eloquent Relationship Tutorial

Once the relationship is defined, you may access the user's roles using the roles dynamic relationship property:

App\Http\Controllers\TestController.php

PHPCopy

Create Records with Many to Many Relationship

If you want to save data with many to many relationships using eloquent, then we can use sync or attach method like:

App\Http\Controllers\TestController.php

PHPCopy

Or you can use sync also like:

App\Http\Controllers\TestController.php

Last updated

Was this helpful?